BsProgressBar constructor
const
BsProgressBar({})
Creates a BsProgressBar.
Implementation
const BsProgressBar({
super.key,
required this.value,
this.label,
this.variant = BsVariant.primary,
this.striped = false,
this.animated = false,
this.color,
this.textColor,
}) : assert(
value >= 0.0 && value <= 100.0,
'Value must be between 0.0 and 100.0',
);