HotKey constructor
HotKey(
- KeyCode keyCode, {
- List<
KeyModifier> ? modifiers, - String? identifier,
- HotKeyScope? scope,
Implementation
HotKey(
this.keyCode, {
this.modifiers,
String? identifier,
HotKeyScope? scope,
}) {
if (identifier != null) this.identifier = identifier;
if (scope != null) this.scope = scope;
}