ProgressIndicatorPainter constructor

const ProgressIndicatorPainter({
  1. required double width,
  2. required Color color,
  3. required double progressValue,
  4. required double firstAnimatedProgress,
  5. required double secondAnimatedProgress,
  6. required double thirdAnimatedProgress,
  7. required double fourthAnimatedProgress,
  8. required double fifthAnimatedProgress,
  9. required double sixthAnimatedProgress,
  10. double? thickness = 30,
})

constructor of ProgressIndicatorPainter

Implementation

const ProgressIndicatorPainter(
    {required this.width,
    required this.color,
    required this.progressValue,
    required this.firstAnimatedProgress,
    required this.secondAnimatedProgress,
    required this.thirdAnimatedProgress,
    required this.fourthAnimatedProgress,
    required this.fifthAnimatedProgress,
    required this.sixthAnimatedProgress,
    this.thickness = 30})
    : super();