GradientCircularProgressIndicator constructor

const GradientCircularProgressIndicator({
  1. Key? key,
  2. required double radius,
  3. double stokeWidth = 2.0,
  4. List<Color>? colors,
  5. List<double>? stops,
  6. bool strokeCapRound = false,
  7. Color backgroundColor = const Color(0xFFEEEEEE),
  8. double totalAngle = 2 * pi,
  9. Color? fullColor,
  10. double? value,
})

Implementation

const GradientCircularProgressIndicator({
  Key? key,
  required this.radius,
  this.stokeWidth = 2.0,
  this.colors,
  this.stops,
  this.strokeCapRound = false,
  this.backgroundColor = const Color(0xFFEEEEEE),
  this.totalAngle = 2 * pi,
  this.fullColor,
  this.value,
}) : super(key: key);