TextFieldKeyboardHandlerResult enum

Inheritance
Available extensions

Values

handled → const TextFieldKeyboardHandlerResult

The handler recognized the key event and chose to take an action.

No other handler should receive the key event.

The key event shouldn't bubble up the tree.

blocked → const TextFieldKeyboardHandlerResult

The handler recognized the key event but chose to take no action.

No other handler should receive the key event.

The key event should bubble up the tree to (possibly) be handled by other keyboard/shortcut listeners.

notHandled → const TextFieldKeyboardHandlerResult

The handler has no relation to the key event and took no action.

Other handlers should be given a chance to act on the key press.

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<TextFieldKeyboardHandlerResult>
A constant List of the values in this enum, in order of their declaration.