AudioLevelAnimation constructor

const AudioLevelAnimation({
  1. Key? key,
  2. required Color bgColor,
  3. double radius = 14,
  4. required int audioLevel,
  5. Color dotsColor = Colors.white,
})

Implementation

const AudioLevelAnimation({
  Key? key,
  required this.bgColor,
  this.radius = 14,
  required this.audioLevel,
  this.dotsColor = Colors.white,
}) : super(key: key);