CustomCircleProgressIndicator constructor

const CustomCircleProgressIndicator({
  1. Key? key,
  2. double? value,
  3. double? size,
  4. bool checkOnFinish = false,
  5. Color? checkColor,
  6. Color? backColor,
  7. Color? valueColor,
  8. IndicatorType indicatorType = IndicatorType.inside,
  9. Color? pointerColor,
  10. bool showValue = true,
  11. TextStyle? valueTextStyle,
})

Implementation

const CustomCircleProgressIndicator({
  Key? key,
  this.value,
  this.size,
  this.checkOnFinish = false,
  this.checkColor,
  this.backColor,
  this.valueColor,
  this.indicatorType = IndicatorType.inside,
  this.pointerColor,
  this.showValue = true,
  this.valueTextStyle,
}) : super(key: key);