ZetaGroupButton.icon constructor

const ZetaGroupButton.icon(
  1. {Key? key,
  2. required IconData? icon,
  3. Widget? dropdown,
  4. VoidCallback? onPressed,
  5. String? label}
)

Constructs group button with icon

Implementation

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