GradientProgressIndicator constructor

const GradientProgressIndicator({
  1. Key? key,
  2. double? value,
  3. LinearGradient gradient = Gradients.hotLinear,
})

Implementation

const GradientProgressIndicator({
  this.key,
  this.value,
  this.gradient = Gradients.hotLinear,
}) : super(key: key);