disconnect method

Future<SSHClient> disconnect()

Disconnects from the a machine using the current client.

Implementation

Future<SSHClient> disconnect() async {
  _client!.close();
  return _client!;
}