CircleProgressView constructor

const CircleProgressView({
  1. Key? key,
  2. required double progressPercent,
  3. Color? progressBackGroundColor,
  4. Color? progressColor,
  5. double width = 55,
  6. double height = 55,
  7. double strokeWidth = 6,
  8. double fontSize = 10,
  9. Color? fontColor,
})

Implementation

const CircleProgressView({super.key,
  required this.progressPercent,
  this.progressBackGroundColor,
  this.progressColor, this.width=55,  this.height=55,
  this.strokeWidth=6, this.fontSize=10,
  this.fontColor, });