ZetaButtonGroup constructor

const ZetaButtonGroup({
  1. Key? key,
  2. bool? rounded,
  3. required List<ZetaGroupButton> buttons,
  4. bool isLarge = false,
  5. bool isInverse = false,
})

Constructs ZetaButtonGroup from a list of ZetaGroupButtons

Implementation

const ZetaButtonGroup({
  super.key,
  super.rounded,
  required this.buttons,
  this.isLarge = false,
  this.isInverse = false,
});