ButtonGroupProps constructor

const ButtonGroupProps({
  1. required List<Widget> children,
  2. bool vertical = false,
  3. double spacing = 8,
})

Implementation

const ButtonGroupProps({
  required this.children,
  this.vertical = false,
  this.spacing = 8,
});