KeyCodes enum Input

Represents physical key codes

Inheritance
Available extensions

Values

A → const KeyCodes
const KeyCodes('KeyA')
B → const KeyCodes
const KeyCodes('KeyB')
C → const KeyCodes
const KeyCodes('KeyC')
D → const KeyCodes
const KeyCodes('KeyD')
E → const KeyCodes
const KeyCodes('KeyE')
F → const KeyCodes
const KeyCodes('KeyF')
G → const KeyCodes
const KeyCodes('KeyG')
H → const KeyCodes
const KeyCodes('KeyH')
I → const KeyCodes
const KeyCodes('KeyI')
J → const KeyCodes
const KeyCodes('KeyJ')
K → const KeyCodes
const KeyCodes('KeyK')
L → const KeyCodes
const KeyCodes('KeyL')
M → const KeyCodes
const KeyCodes('KeyM')
N → const KeyCodes
const KeyCodes('KeyN')
O → const KeyCodes
const KeyCodes('KeyO')
P → const KeyCodes
const KeyCodes('KeyP')
Q → const KeyCodes
const KeyCodes('KeyQ')
R → const KeyCodes
const KeyCodes('KeyR')
S → const KeyCodes
const KeyCodes('KeyS')
T → const KeyCodes
const KeyCodes('KeyT')
U → const KeyCodes
const KeyCodes('KeyU')
V → const KeyCodes
const KeyCodes('KeyV')
W → const KeyCodes
const KeyCodes('KeyW')
X → const KeyCodes
const KeyCodes('KeyX')
Y → const KeyCodes
const KeyCodes('KeyY')
Z → const KeyCodes
const KeyCodes('KeyZ')
Digit0 → const KeyCodes
const KeyCodes('Digit0')
Digit1 → const KeyCodes
const KeyCodes('Digit1')
Digit2 → const KeyCodes
const KeyCodes('Digit2')
Digit3 → const KeyCodes
const KeyCodes('Digit3')
Digit4 → const KeyCodes
const KeyCodes('Digit4')
Digit5 → const KeyCodes
const KeyCodes('Digit5')
Digit6 → const KeyCodes
const KeyCodes('Digit6')
Digit7 → const KeyCodes
const KeyCodes('Digit7')
Digit8 → const KeyCodes
const KeyCodes('Digit8')
Digit9 → const KeyCodes
const KeyCodes('Digit9')
F1 → const KeyCodes
const KeyCodes('F1')
F2 → const KeyCodes
const KeyCodes('F2')
F3 → const KeyCodes
const KeyCodes('F3')
F4 → const KeyCodes
const KeyCodes('F4')
F5 → const KeyCodes
const KeyCodes('F5')
F6 → const KeyCodes
const KeyCodes('F6')
F7 → const KeyCodes
const KeyCodes('F7')
F8 → const KeyCodes
const KeyCodes('F8')
F9 → const KeyCodes
const KeyCodes('F9')
F10 → const KeyCodes
const KeyCodes('F10')
F11 → const KeyCodes
const KeyCodes('F11')
F12 → const KeyCodes
const KeyCodes('F12')
Up → const KeyCodes
const KeyCodes('ArrowUp')
Down → const KeyCodes
const KeyCodes('ArrowDown')
Left → const KeyCodes
const KeyCodes('ArrowLeft')
const KeyCodes('ArrowRight')
Space → const KeyCodes
const KeyCodes('Space')
Enter → const KeyCodes
const KeyCodes('Enter')
Escape → const KeyCodes
const KeyCodes('Escape')
Tab → const KeyCodes
const KeyCodes('Tab')
Backquote → const KeyCodes
const KeyCodes('Backquote')
Quote → const KeyCodes
const KeyCodes('Quote')
Semicolon → const KeyCodes
const KeyCodes('Semicolon')
Comma → const KeyCodes
const KeyCodes('Comma')
Period → const KeyCodes
const KeyCodes('Period')
Slash → const KeyCodes
const KeyCodes('Slash')
Backslash → const KeyCodes
const KeyCodes('Backslash')
Minus → const KeyCodes
const KeyCodes('Minus')
Equal → const KeyCodes
const KeyCodes('Equal')
BracketLeft → const KeyCodes
const KeyCodes('BracketLeft')
BracketRight → const KeyCodes
const KeyCodes('BracketRight')
ShiftLeft → const KeyCodes
const KeyCodes('ShiftLeft')
ShiftRight → const KeyCodes
const KeyCodes('ShiftRight')
ControlLeft → const KeyCodes
const KeyCodes('ControlLeft')
ControlRight → const KeyCodes
const KeyCodes('ControlRight')
AltLeft → const KeyCodes
const KeyCodes('AltLeft')
AltRight → const KeyCodes
const KeyCodes('AltRight')
MetaLeft → const KeyCodes
const KeyCodes('MetaLeft')
MetaRight → const KeyCodes
const KeyCodes('MetaRight')
Backspace → const KeyCodes
const KeyCodes('Backspace')
Delete → const KeyCodes
const KeyCodes('Delete')
Insert → const KeyCodes
const KeyCodes('Insert')
Home → const KeyCodes
const KeyCodes('Home')
End → const KeyCodes
const KeyCodes('End')
PageUp → const KeyCodes
const KeyCodes('PageUp')
PageDown → const KeyCodes
const KeyCodes('PageDown')
Num0 → const KeyCodes
const KeyCodes('Numpad0')
Num1 → const KeyCodes
const KeyCodes('Numpad1')
Num2 → const KeyCodes
const KeyCodes('Numpad2')
Num3 → const KeyCodes
const KeyCodes('Numpad3')
Num4 → const KeyCodes
const KeyCodes('Numpad4')
Num5 → const KeyCodes
const KeyCodes('Numpad5')
Num6 → const KeyCodes
const KeyCodes('Numpad6')
Num7 → const KeyCodes
const KeyCodes('Numpad7')
Num8 → const KeyCodes
const KeyCodes('Numpad8')
Num9 → const KeyCodes
const KeyCodes('Numpad9')
NumAdd → const KeyCodes
const KeyCodes('NumpadAdd')
NumSubtract → const KeyCodes
const KeyCodes('NumpadSubtract')
NumMultiply → const KeyCodes
const KeyCodes('NumpadMultiply')
NumDivide → const KeyCodes
const KeyCodes('NumpadDivide')
NumDecimal → const KeyCodes
const KeyCodes('NumpadDecimal')
NumComma → const KeyCodes
const KeyCodes('NumpadComma')
NumEnter → const KeyCodes
const KeyCodes('NumpadEnter')
NumEqual → const KeyCodes
const KeyCodes('NumpadEqual')
Unknown → const KeyCodes
const KeyCodes('Unknown')

Properties

code String
The string representation of the key code
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

fromCode(String code) KeyCodes
Converts a string code to its corresponding KeyCodes enum value.

Constants

values → const List<KeyCodes>
A constant List of the values in this enum, in order of their declaration.