KeyboardSide enum
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).
This enum is deprecated and will be removed. There is no direct substitute planned, since this enum will no longer be necessary once RawKeyEvent and associated APIs are removed.
See also:
- RawKeyEventData.isModifierPressed, which accepts this enum as an argument.
- Inheritance
- Annotations
-
- @Deprecated('No longer supported. ' 'This feature was deprecated after v3.18.0-2.0.pre.')
Values
- any → const KeyboardSide
-
Matches if either the left, right or both versions of the key are pressed.
- left → const KeyboardSide
-
Matches the left version of the key.
- right → const KeyboardSide
-
Matches the right version of the key.
- all → const KeyboardSide
-
Matches the left and right version of the key pressed simultaneously.
Properties
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
Constants
-
values
→ const List<
KeyboardSide> - A constant List of the values in this enum, in order of their declaration.