CustomTimerPainter constructor

CustomTimerPainter({
  1. Animation<double>? animation,
  2. Color? fillColor,
  3. Gradient? fillGradient,
  4. Color? ringColor,
  5. Gradient? ringGradient,
  6. double? strokeWidth,
  7. StrokeCap? strokeCap,
  8. Color? backgroundColor,
  9. bool? isReverse,
  10. bool? isReverseAnimation,
  11. Gradient? backgroundGradient,
})

Implementation

CustomTimerPainter({
  this.animation,
  this.fillColor,
  this.fillGradient,
  this.ringColor,
  this.ringGradient,
  this.strokeWidth,
  this.strokeCap,
  this.backgroundColor,
  this.isReverse,
  this.isReverseAnimation,
  this.backgroundGradient,
}) : super(repaint: animation);