ZetaSlidableAction.delete constructor
- Key? key,
 - VoidCallback? onPressed,
 - String? semanticLabel = 'Delete',
 - bool paleColor = false,
 
Constructs a Delete ZetaSlidableAction.
Implementation
const ZetaSlidableAction.delete({
  super.key,
  this.onPressed,
  this.semanticLabel = 'Delete',
  this.paleColor = false,
})  : icon = ZetaIcons.delete,
      color = null,
      customForegroundColor = null,
      customBackgroundColor = null,
      _type = _ZetaSlidableActionType.delete;