RoundedButtonGroup constructor

const RoundedButtonGroup({
  1. Key? key,
  2. required List<ButtonGroupItemData> items,
  3. double? minScreenWidthForText,
})

Implementation

const RoundedButtonGroup({
  super.key,
  required this.items,
  this.minScreenWidthForText,
});