SubZeroButtonGroup constructor

const SubZeroButtonGroup({
  1. Key? key,
  2. required List<Widget> children,
  3. double spacing = SubZeroSpacing.sm,
  4. MainAxisAlignment alignment = MainAxisAlignment.start,
  5. bool fullWidth = false,
  6. bool wrap = true,
  7. double runSpacing = SubZeroSpacing.sm,
})

Implementation

const SubZeroButtonGroup({
  super.key,
  required this.children,
  this.spacing = SubZeroSpacing.sm,
  this.alignment = MainAxisAlignment.start,
  this.fullWidth = false,
  this.wrap = true,
  this.runSpacing = SubZeroSpacing.sm,
});