CircularProgressIndicator constructor

CircularProgressIndicator({
  1. double? value,
  2. Color? color,
  3. Duration interval = const Duration(milliseconds: 90),
  4. bool active = true,
  5. Key? key,
})

Implementation

CircularProgressIndicator({
  this.value,
  this.color,
  this.interval = const Duration(milliseconds: 90),
  this.active = true,
  super.key,
});