ZetaSlidableAction.menuMore constructor

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

Constructs a More menu ZetaSlidableAction.

Implementation

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