BsProgress constructor
const
BsProgress({
- Key? key,
- required List<
BsProgressBar> bars, - double height = 16.0,
- Color? backgroundColor,
- BorderRadius? borderRadius,
Creates a stacked progress container with multiple BsProgressBar segments.
Implementation
const BsProgress({
super.key,
required this.bars,
this.height = 16.0,
this.backgroundColor,
this.borderRadius,
});