ProgressIndicator constructor
ProgressIndicator({
- required double value,
- int width = 20,
- String? fillChar,
- String? trackChar,
- Color? color,
- Color? trackColor,
- bool showLabel = false,
- String? label,
- Style? labelStyle,
- ProgressStyle progressStyle = ProgressStyle.classic,
- ProgressLabelPosition labelPosition = ProgressLabelPosition.right,
- String borderLeft = '[',
- String borderRight = ']',
- bool showBorder = true,
- Color? borderColor,
- String labelFormat(
- double value
- 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,
});