connect static method
Implementation
static Future<HyperDeckConnection> connect(String host,
{int port = 9993, Duration? timeout}) async {
final future = Socket.connect(host, port);
return HyperDeckConnection._(
timeout == null ? await future : await future.timeout(timeout));
}