connectionClosed method
Platform notified framework of closed connection.
TextInputClient should cleanup its connection and finalize editing.
Implementation
@protected
@override
void connectionClosed() {
if (connection != null && connection!.attached) {
connection?.connectionClosedReceived();
connection = null;
focusNode?.unfocus();
}
}