AudioProgressBars constructor

const AudioProgressBars({
  1. Key? key,
  2. bool isVerticallyAnimated = true,
  3. bool isHorizontallyAnimated = true,
  4. required List<double> listOfHeights,
  5. Color initalColor = Colors.red,
  6. Color progressColor = Colors.green,
  7. Color backgroundColor = Colors.white,
  8. required double width,
  9. required double progressPercentage,
  10. int timeInMilliSeconds = 20000,
})

Implementation

const AudioProgressBars({
  Key? key,
  this.isVerticallyAnimated = true,
  this.isHorizontallyAnimated = true,
  required this.listOfHeights,
  this.initalColor = Colors.red,
  this.progressColor = Colors.green,
  this.backgroundColor = Colors.white,
  required this.width,
  required this.progressPercentage,
  this.timeInMilliSeconds = 20000,
}) : super(key: key);