GradientCircularProgressIndicator constructor

const GradientCircularProgressIndicator({
  1. Key? key,
  2. required double radius,
  3. required List<Color> gradientColors,
  4. double strokeWidth = 4,
})

Implementation

const GradientCircularProgressIndicator({
  super.key,
  required this.radius,
  required this.gradientColors,
  this.strokeWidth = 4,
});