TButtonGroup constructor

const TButtonGroup({
  1. Key? key,
  2. TButtonGroupType type = TButtonGroupType.solid,
  3. MaterialColor? color,
  4. TButtonSize? size,
  5. List<TButtonGroupItem> items = const [],
})

Implementation

const TButtonGroup({
  super.key,
  this.type = TButtonGroupType.solid,
  this.color,
  this.size,
  this.items = const [],
});