ProgressBarItem constructor

ProgressBarItem({
  1. String? text,
  2. required double value,
  3. double? hintValue,
  4. String? selectedHintText,
  5. String? showBarValueText,
  6. TextStyle showBarValueTextStyle = _showBarValueTextStyle,
})

Implementation

ProgressBarItem(
    {this.text,
    required this.value,
    this.hintValue,
    this.selectedHintText,
    this.showBarValueText,
    this.showBarValueTextStyle = _showBarValueTextStyle});