CircleProgress constructor

const CircleProgress({
  1. Key? key,
  2. required double value,
  3. double strokeWidth = 8.0,
  4. double size = 50,
  5. Color progressColor = Colors.blue,
  6. Color bgColor = Colors.transparent,
})

Implementation

const CircleProgress(
    {super.key,
    required this.value,
    this.strokeWidth = 8.0,
    this.size = 50,
    this.progressColor = Colors.blue,
    this.bgColor = Colors.transparent});