close method

void close()

Call this method if you're not going to use this client anymore

Implementation

void close() {
  clients[clientIndex] = null;
  _http.close();
  _ws.close();
}