disconnect method

  1. @override
Future<void> disconnect()

Disconnects from the hardware wallet.

Implementation

@override
Future<void> disconnect() async {
  await _client.disconnect();
  _account = null;
}