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:

Inheritance
Annotations
  • @Deprecated('No longer supported. ' 'This feature was deprecated after v3.18.0-2.0.pre.')

Constructors

KeyboardSide()
const

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.

Matches the right version of the key.

all → const KeyboardSide

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

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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

Constants

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