CirclePainterV2 constructor

CirclePainterV2({
  1. double? topMargin,
  2. double? circleRadius(
    1. Size size
    )?,
  3. double progress = 0.0,
  4. double strokeWidth = 2.0,
  5. Color strokeColor = Colors.white,
  6. Color? overlayColor,
  7. Color progressColor = Colors.green,
})

Implementation

CirclePainterV2({
  this.topMargin,
  this.circleRadius,
  this.progress = 0.0,
  this.strokeWidth = 2.0,
  this.strokeColor = Colors.white,
  this.overlayColor,
  this.progressColor = Colors.green,
});