Keybinding class

Constructors

Keybinding({required bool isAltPressed, required bool isControlPressed, required bool isMetaPressed, required bool isShiftPressed, required String keyLabel})
Keybinding.fromJson(String source)
factory
Keybinding.fromMap(Map<String, dynamic> map)
factory
Keybinding.parse(String command)
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
isAltPressed bool
final
isControlPressed bool
final
isMetaPressed bool
final
isShiftPressed bool
final
keyCode int
no setter
keyLabel String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({bool? isAltPressed, bool? isControlPressed, bool? isMetaPressed, bool? isShiftPressed, String? keyLabel}) Keybinding
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override