ColorfulCircularProgressIndicator constructor

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

Implementation

const ColorfulCircularProgressIndicator({
  super.key,
  required this.colors,
  this.value,
  this.strokeWidth = 4.0,
  this.semanticsLabel,
  this.semanticsValue,
  this.backgroundColor,
  required this.duration,
  required this.initialColor,
});