close method

  1. @override
void close()

Closes the editing state of the text currently being edited.

Implementation

@override
void close() {
  composingTextRange = null;
  _textInputConnection?.close();
  _textInputConnection = null;
}