setEditingState method Null safety
- 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);
}