ZetaIconButton constructor

const ZetaIconButton({
  1. Key? key,
  2. bool? rounded,
  3. VoidCallback? onPressed,
  4. ZetaWidgetBorder? borderType,
  5. ZetaButtonType type = ZetaButtonType.primary,
  6. ZetaWidgetSize size = ZetaWidgetSize.medium,
  7. IconData icon = ZetaIcons.more_horizontal,
  8. String? semanticLabel,
})

Constructor for ZetaIconButton

Implementation

const ZetaIconButton({
  super.key,
  super.rounded,
  this.onPressed,
  this.borderType,
  this.type = ZetaButtonType.primary,
  this.size = ZetaWidgetSize.medium,
  this.icon = ZetaIcons.more_horizontal,
  this.semanticLabel,
});