CustomLinearProgressIndicator constructor

const CustomLinearProgressIndicator({
  1. Key? key,
  2. Duration? duration,
  3. double? height,
  4. double? value,
  5. double? width,
  6. bool filled = false,
  7. Color? backColor,
  8. Color? valueColor,
  9. BoxShadow? shadow,
  10. TextStyle? valueTextStyle,
  11. bool checkOnFinish = false,
  12. bool finishedAnimation = true,
  13. IndicatorType indicatorType = IndicatorType.inside,
  14. Color? pointerColor,
  15. Color? checkColor,
  16. double? checkSize,
  17. EdgeType edgeType = EdgeType.round,
  18. bool showValue = true,
})

Implementation

const CustomLinearProgressIndicator({
  Key? key,
  this.duration,
  this.height,
  this.value,
  this.width,
  this.filled = false,
  this.backColor,
  this.valueColor,
  this.shadow,
  this.valueTextStyle,
  this.checkOnFinish = false,
  this.finishedAnimation = true,
  this.indicatorType = IndicatorType.inside,
  this.pointerColor,
  this.checkColor,
  this.checkSize,
  this.edgeType = EdgeType.round,
  this.showValue = true,
}) : super(key: key);