CircularProgressIndicator constructor

const CircularProgressIndicator({
  1. Key? key,
  2. double? value,
  3. double? size,
  4. Duration duration = kDefaultDuration,
  5. bool animated = true,
  6. bool onSurface = false,
})

Implementation

const CircularProgressIndicator({
  super.key,
  this.value,
  this.size,
  this.duration = kDefaultDuration,
  this.animated = true,
  this.onSurface = false,
});