show static method
Shows the shortcuts help as a dialog.
Implementation
static void show(BuildContext context, List<ShortcutHelpItem> shortcuts) {
showDialog(
context: context,
barrierColor: Colors.black.withAlpha(120),
builder: (_) => Center(
child: WebShortcutsHelp(shortcuts: shortcuts),
),
);
}