NativeCircularProgressIndicator constructor

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

Implementation

NativeCircularProgressIndicator({
  super.key,
  super.type = CircularProgressIndicator,
  this.value,
  this.radius = 10,
  this.backgroundColor,
  this.borderColor,
  this.color,
  this.valueColor,
  this.strokeWidth = 4.0,
  this.strokeAlign = 0.0,
  this.semanticsLabel,
  this.semanticsValue,
  this.strokeCap,
});