CustomProgress constructor

const CustomProgress({
  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? textStyle,
  8. double strokeWidth = 3.0,
  9. ProgressType progressType = ProgressType.Circular,
})

Implementation

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