ZetaGroupButton.icon constructor

const ZetaGroupButton.icon({
  1. Key? key,
  2. bool? rounded,
  3. required IconData? icon,
  4. VoidCallback? onPressed,
  5. String? label,
  6. String? semanticLabel,
})

Constructs group button with icon

Implementation

const ZetaGroupButton.icon({
  super.key,
  super.rounded,
  required this.icon,
  this.onPressed,
  this.label,
  this.semanticLabel,
})  : isFinal = false,
      isInitial = false,
      isInverse = false,
      isLarge = true,
      items = null,
      onChange = null,
      initialValue = null;