FancyProgressBar constructor

const FancyProgressBar({
  1. required double value,
  2. String? label,
  3. bool showValue = true,
  4. Key? key,
})

Implementation

const FancyProgressBar({
  required this.value,
  this.label,
  this.showValue = true,
  super.key,
});