setEditingState method

  1. @override
void setEditingState(
  1. TextEditingValue value
)
override

Informs the text input control about editing state changes.

This method is called when the editing state of the attached input client has changed.

Implementation

@override
void setEditingState(TextEditingValue value) {
  super.setEditingState(value);
  _editingState = value;
  _inputControl?.setEditingState(_editingState);
}