shortcuts property
Returns the shortcut map.
When the map is changed, listeners to this manager will be notified.
The returned map should not be modified.
Implementation
Map<ShortcutActivator, Intent> get shortcuts => _shortcuts;
Implementation
set shortcuts(Map<ShortcutActivator, Intent> value) {
if (!mapEquals<ShortcutActivator, Intent>(_shortcuts, value)) {
_shortcuts = value;
_indexedShortcutsCache = null;
notifyListeners();
}
}