NiceProgress constructor

const NiceProgress({
  1. Key? key,
  2. required double value,
  3. double max = 1.0,
  4. String? label,
  5. bool showPercent = false,
  6. double height = 8,
  7. Color? color,
  8. Color? backgroundColor,
  9. bool striped = false,
  10. bool animated = false,
})

Implementation

const NiceProgress({
  super.key,
  required this.value,
  this.max = 1.0,
  this.label,
  this.showPercent = false,
  this.height = 8,
  this.color,
  this.backgroundColor,
  this.striped = false,
  this.animated = false,
});