BsProgress constructor

const BsProgress({
  1. Key? key,
  2. required List<BsProgressBar> bars,
  3. double height = 16.0,
  4. Color? backgroundColor,
  5. 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,
});