CustomProgressCircle constructor

const CustomProgressCircle({
  1. Key? key,
  2. double size = 40,
  3. double value = 0.0,
  4. String title = '',
  5. Color backgroundColor = Colors.blue,
  6. Color valueColor = Colors.white,
  7. TextStyle? style,
  8. double strokeWidth = 3.0,
})

Implementation

const CustomProgressCircle(
    {Key? key,
    this.size = 40,
    this.value = 0.0,
    this.title = '',
    this.backgroundColor = Colors.blue,
    this.valueColor = Colors.white,
    this.style,
    this.strokeWidth = 3.0})
    : super(key: key);