disconnect method

void disconnect()

Disconnect from the forwarding server

Implementation

void disconnect() {
  _reconnectTimer?.cancel();
  _reconnectTimer = null;

  if (_ws != null) {
    _ws!.sink.close();
    _ws = null;
  }
}