CircularProgressBarPainter constructor

CircularProgressBarPainter({
  1. double strokeWidth = 20,
  2. StrokeCap strokeCap = StrokeCap.round,
  3. required double radius,
  4. required Color color,
  5. required double percentage,
})

Implementation

CircularProgressBarPainter(
    {this.strokeWidth = 20,
    this.strokeCap = StrokeCap.round,
    required this.radius,
    required this.color,
    required this.percentage});