FastCircleProgress constructor

const FastCircleProgress({
  1. Key? key,
  2. required double currentProgress,
  3. String? labelText,
  4. double width = 64,
  5. double height = 64,
  6. Color progressColor = Colors.blue,
  7. Color backgroundColor = Colors.grey,
  8. double strokeWidth = 10,
})

Implementation

const FastCircleProgress({
  super.key,
  required this.currentProgress,
  this.labelText,
  this.width = 64,
  this.height = 64,
  this.progressColor = Colors.blue,
  this.backgroundColor = Colors.grey,
  this.strokeWidth = 10,
});