PlatformProgressIndicator constructor

const PlatformProgressIndicator({
  1. Key? key,
  2. double strokeWidth = 4.0,
  3. double radius = 10.0,
  4. double size = 48.0,
  5. Color? color,
  6. double? value,
  7. Brightness? brightness,
})

Implementation

const PlatformProgressIndicator({
  super.key,
  this.strokeWidth = 4.0,
  this.radius = 10.0,
  this.size = 48.0,
  this.color,
  this.value,
  this.brightness,
});