ReplyContextMenuButton constructor

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

Implementation

ReplyContextMenuButton({super.onPressed})
  : super(
      key: const Key('ReplyButton'),
      label: PlatformUtils.isMobile
          ? 'btn_reply'.l10n
          : 'btn_reply_message'.l10n,
      trailing: const SvgIcon(SvgIcons.reply),
      inverted: const SvgIcon(SvgIcons.replyWhite),
    );