connect method

void connect()

Connect the socket

Implementation

void connect() {
  if (!_socket.connected) {
    _socket.connect();
  }
}