InformationContextMenuButton constructor

InformationContextMenuButton({
  1. Key? key,
  2. void onPressed()?,
})

Implementation

InformationContextMenuButton({super.key, super.onPressed})
  : super(
      label: PlatformUtils.isMobile
          ? 'btn_info'.l10n
          : 'btn_message_info'.l10n,
      trailing: const SvgIcon(SvgIcons.info),
      inverted: const SvgIcon(SvgIcons.infoWhite),
    );