MaterialProgressIndicatorData constructor

MaterialProgressIndicatorData({
  1. Key? key,
  2. Color? color,
  3. Color? backgroundColor,
  4. double? strokeWidth,
  5. double? value,
  6. Animation<Color>? valueColor,
  7. String? semanticsLabel,
  8. String? semanticsValue,
  9. double? strokeAlign,
  10. StrokeCap? strokeCap,
})

Implementation

MaterialProgressIndicatorData({
  super.key,
  super.color,
  this.backgroundColor,
  this.strokeWidth,
  this.value,
  this.valueColor,
  this.semanticsLabel,
  this.semanticsValue,
  this.strokeAlign,
  this.strokeCap,
});