ButtonGroup constructor

const ButtonGroup({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. required List<Widget> children,
})

Implementation

const ButtonGroup({
  super.key,
  this.direction = Axis.horizontal,
  required this.children,
});