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:
- RawKeyEventData.isModifierPressed, which accepts this enum as an argument.
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()
- right → const 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
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]