GradientCircularProgressIndicator constructor

const GradientCircularProgressIndicator({
  1. Key? key,
  2. double? value,
  3. Gradient gradient = Gradients.hotLinear,
  4. double radius = 200,
})

Implementation

const GradientCircularProgressIndicator({
  super.key,
  this.value,
  this.gradient = Gradients.hotLinear,
  this.radius = 200,
});