CustomProgressLinear constructor

const CustomProgressLinear({
  1. Key? key,
  2. double height = 20,
  3. double value = 0.0,
  4. String title = "",
  5. Color backgroundColor = Colors.white,
  6. Color valueColor = Colors.blue,
  7. TextStyle? style,
})

Implementation

const CustomProgressLinear(
    {Key? key,
    this.height = 20,
    this.value = 0.0,
    this.title = "",
    this.backgroundColor = Colors.white,
    this.valueColor = Colors.blue,
    this.style})
    : super(key: key);