ColorfulLinearProgressIndicator constructor

const ColorfulLinearProgressIndicator({
  1. Key? key,
  2. required List<Color> colors,
  3. double? value,
  4. String? semanticsLabel,
  5. String? semanticsValue,
  6. Color? backgroundColor,
  7. required Duration duration,
  8. required Color initialColor,
  9. double? minHeight,
})

Implementation

const ColorfulLinearProgressIndicator({
  super.key,
  required this.colors,
  this.value,
  this.semanticsLabel,
  this.semanticsValue,
  this.backgroundColor,
  required this.duration,
  required this.initialColor,
  this.minHeight,
});