contextId property

int get contextId

This is used to specify targets of text field operations. This ID becomes invalid as soon as onBlur is called.

Implementation

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

Implementation

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