connect static method

Future<SSHSocket> connect(
  1. String host,
  2. int port, {
  3. Duration? timeout,
})

Implementation

static Future<SSHSocket> connect(
  String host,
  int port, {
  Duration? timeout,
}) async {
  return await connectNativeSocket(host, port, timeout: timeout);
}