CustomLinearProgressBar constructor

const CustomLinearProgressBar({
  1. Key? key,
  2. double value = 0,
  3. Color? color,
  4. double height = 35,
})

Implementation

const CustomLinearProgressBar({
  Key? key,
  this.value = 0,
  this.color,
  this.height = 35,
}) : super(key: key);