FlutstrapProgressGroup constructor

const FlutstrapProgressGroup({
  1. Key? key,
  2. required List<FlutstrapProgress> children,
  3. double spacing = _ProgressConstants.defaultSpacing,
  4. bool expandToFill = true,
})

Implementation

const FlutstrapProgressGroup({
  super.key,
  required this.children,
  this.spacing = _ProgressConstants.defaultSpacing,
  this.expandToFill = true,
});