ForwardContextMenuButton constructor

ForwardContextMenuButton({
  1. void onPressed()?,
})

Implementation

ForwardContextMenuButton({super.onPressed})
  : super(
      key: const Key('ForwardButton'),
      label: PlatformUtils.isMobile
          ? 'btn_forward'.l10n
          : 'btn_forward_message'.l10n,
      trailing: const SvgIcon(SvgIcons.forwardSmall),
      inverted: const SvgIcon(SvgIcons.forwardSmallWhite),
    );