CuReProgressBar constructor

const CuReProgressBar({
  1. Key? key,
  2. required double percentage,
  3. Color? color,
  4. bool? removeAnimation,
  5. double? height,
  6. required double width,
  7. double? borderRadius,
  8. String? label,
  9. bool? showPercentageLabel,
})

Implementation

const CuReProgressBar({
  super.key,
  required this.percentage,
  this.color,
  this.removeAnimation,
  this.height,
  required this.width,
  this.borderRadius,
  this.label,
  this.showPercentageLabel,
});