LinearProgressbar constructor

const LinearProgressbar({
  1. Key? key,
  2. Color? color,
  3. Color? backgroundColor,
  4. double? width,
  5. double? height,
  6. double? progress,
  7. double? borderRadius,
  8. EdgeInsets? margin,
})

Implementation

const LinearProgressbar(
    {Key? key,
    this.color,
    this.backgroundColor,
    this.width,
    this.height,
    this.progress,
    this.borderRadius,
    this.margin})
    : super(key: key);