contextId property

int get contextId

ID of the context where the key events will be sent, or zero to send key events to non-input field.

Implementation

int get contextId => _wrapped.contextID;
set contextId (int v)

Implementation

set contextId(int v) {
  _wrapped.contextID = v;
}