java.lang.Object
io.flutter.embedding.engine.systemchannels.KeyEventChannel.FlutterKeyEvent
- Enclosing class:
KeyEventChannel
public static class KeyEventChannel.FlutterKeyEvent
extends Object
A key event as defined by Flutter.
-
Field Summary
Fields
The character produced by this event, including any combining characters pressed before it.
The Android key event that this Flutter key event was created from.
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
event
The Android key event that this Flutter key event was created from.
This event is used to identify pending events when results are received from the
framework.
-
complexCharacter
@Nullable
public final Character complexCharacter
The character produced by this event, including any combining characters pressed before it.
-
Constructor Details
-
FlutterKeyEvent
public FlutterKeyEvent(@NonNull
KeyEvent androidKeyEvent,
@Nullable
Character complexCharacter)