LinearProgressBar(- {Key? key,
- Size size = const Size(400, 200),
- EdgeInsets margin = const EdgeInsets.only(top: 0, left: 0),
- double value = 0,
- double maxValue = 100,
- Color progressColor = Colors.green,
- Color backgroundColor = Colors.transparent}
)
Implementation
LinearProgressBar({
Key? key,
this.size = const Size(400, 200),
this.margin = const EdgeInsets.only(top: 0, left: 0),
this.value = 0,
this.maxValue = 100,
this.progressColor = Colors.green,
this.backgroundColor = Colors.transparent,
}) : super(key: key);