ButtonGroupItem<T> constructor

ButtonGroupItem<T>({
  1. required T value,
  2. IconData? icon,
  3. String? label,
  4. String? tooltip,
  5. bool enabled = true,
})

Implementation

ButtonGroupItem({
  required this.value,
  this.icon,
  this.label,
  this.tooltip,
  this.enabled = true,
});