ArcaneIconButton constructor

const ArcaneIconButton({
  1. required Component icon,
  2. void onPressed()?,
  3. IconButtonStyle? style,
  4. @Deprecated('Use style parameter instead') ButtonVariant? variant,
  5. IconButtonSize size = IconButtonSize.medium,
  6. bool disabled = false,
  7. bool loading = false,
  8. String? tooltip,
  9. Key? key,
})

Implementation

const ArcaneIconButton({
  required this.icon,
  this.onPressed,
  this.style,
  @Deprecated('Use style parameter instead') this.variant,
  this.size = IconButtonSize.medium,
  this.disabled = false,
  this.loading = false,
  this.tooltip,
  super.key,
});