ArnaLinkedButton constructor

const ArnaLinkedButton({
  1. String? label,
  2. IconData? icon,
  3. required VoidCallback? onPressed,
  4. VoidCallback? onLongPress,
  5. String? tooltipMessage,
  6. ButtonType buttonType = ButtonType.normal,
  7. bool isFocusable = true,
  8. bool autofocus = false,
  9. Color? accentColor,
  10. MouseCursor cursor = MouseCursor.defer,
  11. String? semanticLabel,
  12. bool enableFeedback = true,
})

Creates a linked button.

Implementation

const ArnaLinkedButton({
  this.label,
  this.icon,
  required this.onPressed,
  this.onLongPress,
  this.tooltipMessage,
  this.buttonType = ButtonType.normal,
  this.isFocusable = true,
  this.autofocus = false,
  this.accentColor,
  this.cursor = MouseCursor.defer,
  this.semanticLabel,
  this.enableFeedback = true,
});