KeyboardSide enum Null safety

An enum describing the side of the keyboard that a key is on, to allow discrimination between which key is pressed (e.g. the left or right SHIFT key).

See also:

Inheritance

Constructors

KeyboardSide()
const

Values

any → const KeyboardSide

Matches if either the left, right or both versions of the key are pressed.

KeyboardSide()
left → const KeyboardSide

Matches the left version of the key.

KeyboardSide()

Matches the right version of the key.

KeyboardSide()
all → const KeyboardSide

Matches the left and right version of the key pressed simultaneously.

KeyboardSide()

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

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

Operators

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

Constants

values → const List<KeyboardSide>
A constant List of the values in this enum, in order of their declaration.
[any, left, right, all]