TButtonGroupItem constructor

TButtonGroupItem({
  1. IconData? icon,
  2. String? text,
  3. bool loading = false,
  4. String loadingText = 'Loading...',
  5. Color? color,
  6. String? tooltip,
  7. bool active = false,
  8. Widget? child,
  9. VoidCallback? onTap,
  10. dynamic onPressed(
    1. TButtonPressOptions
    )?,
})

Implementation

TButtonGroupItem({
  this.icon,
  this.text,
  this.loading = false,
  this.loadingText = 'Loading...',
  this.color,
  this.tooltip,
  this.active = false,
  this.child,
  this.onTap,
  this.onPressed,
});