CuReCircularProgressBar constructor

const CuReCircularProgressBar({
  1. Key? key,
  2. Color? color,
  3. double? size,
  4. required double percentage,
  5. bool? showPercentage,
  6. Widget? child,
})

Implementation

const CuReCircularProgressBar({
  super.key,
  this.color,
  this.size,
  required this.percentage,
  this.showPercentage,
  this.child,
});