AsciiControlKey enum

A control key on the keyboard.

Includes keys such as backspace, tab, enter, escape, and delete.

Inheritance
Implemented types

Constructors

AsciiControlKey(int charCode)
const

Values

backspace → const AsciiControlKey

Backspace ('\b').

const AsciiControlKey(0x08)
tab → const AsciiControlKey

Tab ('\t').

const AsciiControlKey(0x09)
enter → const AsciiControlKey

Enter ('\n').

const AsciiControlKey(0xA)
escape → const AsciiControlKey

Escape ('\x1B').

const AsciiControlKey(0x1B)
delete → const AsciiControlKey

Delete ('\x7F').

const AsciiControlKey(0x7F)

Properties

charCode int
The ASCII character code of this key.
final
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<AsciiControlKey>
A constant List of the values in this enum, in order of their declaration.