PluginLinearProgressbar constructor

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

Implementation

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