CircularProgressBar constructor

const CircularProgressBar({
  1. Key? key,
  2. required double percent,
  3. required double radius,
  4. required double strokeWidth,
  5. Widget? child,
  6. Color? trackColor,
  7. Color? fillColor,
  8. Gradient? trackGradient,
  9. Gradient? fillGradient,
})

Implementation

const CircularProgressBar({
  super.key,
  required this.percent,
  required this.radius,
  required this.strokeWidth,
  this.child,
  this.trackColor,
  this.fillColor,
  this.trackGradient,
  this.fillGradient,
});