CircularCountdownPainter constructor

CircularCountdownPainter({
  1. required double progress,
  2. Color? fillColor,
  3. Color? ringColor,
  4. Color? backgroundColor,
  5. Gradient? fillGradient,
  6. Gradient? ringGradient,
  7. Gradient? backgroundGradient,
  8. required double strokeWidth,
  9. required StrokeCap strokeCap,
})

Implementation

CircularCountdownPainter({
  required this.progress,
  this.fillColor,
  this.ringColor,
  this.backgroundColor,
  this.fillGradient,
  this.ringGradient,
  this.backgroundGradient,
  required this.strokeWidth,
  required this.strokeCap,
});