CustomCircularProgressIndicator constructor
const
CustomCircularProgressIndicator({})
Creates a CustomCircularProgressIndicator.
progress must be between 0.0 and 1.0.
Implementation
const CustomCircularProgressIndicator({
super.key,
required this.progress,
required this.filledColor,
required this.unfilledColor,
this.strokeWidth = 10.0,
this.size = 100.0,
}) : assert(progress >= 0.0 && progress <= 1.0);