CircularProgressIndicator constructor

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

Implementation

const CircularProgressIndicator({
  super.key,
  this.value,
  this.backgroundColor,
  this.color,
  this.valueColor,
  this.strokeWidth = 4.0,
  this.strokeAlign = 0.0,
  this.semanticsLabel,
  this.semanticsValue,
  this.strokeCap,
});