ProgressBarPainter constructor

ProgressBarPainter({
  1. required Color colorAccent,
  2. required Color backgroundColor,
  3. required double progress,
  4. required bool isIndeterminate,
  5. bool isIndeterminateAnimating = false,
  6. bool hasAppFocus = true,
})

Implementation

ProgressBarPainter(
    {required this.colorAccent,
    required this.backgroundColor,
    required this.progress,
    required this.isIndeterminate,
    this.isIndeterminateAnimating = false,
    this.hasAppFocus = true});