connect static method

Future<void> connect()

Implementation

static Future<void> connect() async {
  await close();
  _connection = await HyperDeckConnection.connect(hyperDeckIP, port: port);
  socket = _connection!.socket;
  status = true;
  _subscription = _connection!.responses.listen(_apply);
}