ZetaSlidableAction.call constructor

const ZetaSlidableAction.call({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. String? semanticLabel = 'Call',
  4. bool paleColor = false,
})

Constructs a Call ZetaSlidableAction.

Implementation

const ZetaSlidableAction.call({
  super.key,
  this.onPressed,
  this.semanticLabel = 'Call',
  this.paleColor = false,
})  : icon = ZetaIcons.phone,
      color = null,
      customForegroundColor = null,
      customBackgroundColor = null,
      _type = _ZetaSlidableActionType.call;