setEditingState method

void setEditingState(
  1. TextEditingValue value
)

Requests that the text input control change its internal state to match the given state.

Implementation

void setEditingState(TextEditingValue value) {
  assert(attached);
  TextInput._instance._setEditingState(value);
}