ResendContextMenuButton constructor

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

Implementation

ResendContextMenuButton({super.onPressed})
  : super(
      key: const Key('Resend'),
      label: PlatformUtils.isMobile
          ? 'btn_resend'.l10n
          : 'btn_resend_message'.l10n,
      trailing: const SvgIcon(SvgIcons.sendSmall),
      inverted: const SvgIcon(SvgIcons.sendSmallWhite),
    );