CircularProgressbarWithAnimation constructor

CircularProgressbarWithAnimation({
  1. Key? key,
  2. double from = 0,
  3. double to = 100,
  4. String symbol = '%',
  5. List<ColorRule>? colorConditions,
  6. Color strokeColor = Colors.grey,
  7. Color innerStrokeColor = Colors.purpleAccent,
  8. double innerStrokeWidth = 15,
  9. double strokeWidth = 5,
  10. Duration? duration,
  11. TextStyle? textStyle,
})

Implementation

CircularProgressbarWithAnimation(
    {Key? key,
    this.from = 0,
    this.to = 100,
    this.symbol = '%',
    this.colorConditions,
    this.strokeColor = Colors.grey,
    this.innerStrokeColor = Colors.purpleAccent,
    this.innerStrokeWidth = 15,
    this.strokeWidth = 5,
    this.duration,
    this.textStyle})
    : super(key: key);