LinearProgressBar constructor

const LinearProgressBar({
  1. Key? key,
  2. Color? progressColor,
  3. Color? backgroundColor,
  4. int? maxSteps,
  5. int? currentStep,
  6. double? minHeight,
  7. String? semanticsLabel,
  8. String? semanticsValue,
  9. Animation<Color?>? valueColor,
  10. int? progressType,
  11. Axis? dotsAxis = Axis.horizontal,
  12. EdgeInsets? dotsSpacing = EdgeInsets.zero,
  13. double dotsActiveSize = 8,
  14. double dotsInactiveSize = 8,
  15. BorderRadiusGeometry? borderRadius,
})

Implementation

const LinearProgressBar({
  Key? key,
  this.progressColor,
  this.backgroundColor,
  this.maxSteps,
  this.currentStep,
  this.minHeight,
  this.semanticsLabel,
  this.semanticsValue,
  this.valueColor,
  this.progressType,
  this.dotsAxis = Axis.horizontal,
  this.dotsSpacing = EdgeInsets.zero,
  this.dotsActiveSize = 8,
  this.dotsInactiveSize = 8,
  this.borderRadius,
}) : super(key: key);