setEditingState method

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

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

Implementation

@override
void setEditingState(TextEditingValue value) {
  super.setEditingState(value);
  _contentUpdateCount += 1;
}