ProgressIndicator constructor

ProgressIndicator({
  1. required double value,
  2. int width = 20,
  3. String? fillChar,
  4. String? trackChar,
  5. Color? color,
  6. Color? trackColor,
  7. bool showLabel = false,
  8. String? label,
  9. Style? labelStyle,
  10. ProgressStyle progressStyle = ProgressStyle.classic,
  11. ProgressLabelPosition labelPosition = ProgressLabelPosition.right,
  12. String borderLeft = '[',
  13. String borderRight = ']',
  14. bool showBorder = true,
  15. Color? borderColor,
  16. String labelFormat(
    1. double value
    )?,
  17. Key? key,
})

Implementation

ProgressIndicator({
  required this.value,
  this.width = 20,
  this.fillChar,
  this.trackChar,
  this.color,
  this.trackColor,
  this.showLabel = false,
  this.label,
  this.labelStyle,
  this.progressStyle = ProgressStyle.classic,
  this.labelPosition = ProgressLabelPosition.right,
  this.borderLeft = '[',
  this.borderRight = ']',
  this.showBorder = true,
  this.borderColor,
  this.labelFormat,
  super.key,
});