connect method

Future<bool> connect()

Connects to the Liquid Galaxy system.

Implementation

Future<bool> connect() async {
  bool status = await sshConnection.connect();

  // If the connection is successful, show the logos
  if (status) {
    await showLogos();
  }

  return status;
}