CircleProgressBarPainter constructor

const CircleProgressBarPainter({
  1. double progress = 0,
  2. double strokeWidth = 3,
  3. Color color = Colors.grey,
  4. Color fillColor = Colors.white,
})

Implementation

const CircleProgressBarPainter(
    {this.progress = 0,
    this.strokeWidth = 3,
    this.color = Colors.grey,
    this.fillColor = Colors.white});