CircleProgressBarPainter constructor

CircleProgressBarPainter({
  1. required Color backgroundColor,
  2. required Color foregroundColor,
  3. required Color fillColor,
  4. required Color emptyColor,
  5. required double percentage,
  6. required double value,
  7. double strokeWidth = 6,
})

Implementation

CircleProgressBarPainter( {
  required this.backgroundColor,
  required this.foregroundColor,
  required this.fillColor,
  required this.emptyColor,
  required this.percentage,
  required this.value,
  this.strokeWidth=6,
});