connect method

Future<void> connect()

Connect to the server using current parameters

Implementation

Future<void> connect() async {
  await client.connect(host: host, port: port, path: path);
}