Shortcuts.manager constructor
- Key? key,
- required ShortcutManager manager,
- required Widget child,
- String? debugLabel,
- bool includeSemantics = true,
Creates a const Shortcuts widget that uses the manager
to
manage the map of shortcuts.
If this constructor is used, shortcuts will return the contents of ShortcutManager.shortcuts.
The child
and manager
arguments are required.
Implementation
const Shortcuts.manager({
super.key,
required ShortcutManager this.manager,
required this.child,
this.debugLabel,
this.includeSemantics = true,
}) : _shortcuts = const <ShortcutActivator, Intent>{};