disconnect method
Disconnects the device.
Implementation
Future<void> disconnect() async {
_log.info("Disconnecting");
try {
await device.disconnect();
} catch (_) {}
}
Disconnects the device.
Future<void> disconnect() async {
_log.info("Disconnecting");
try {
await device.disconnect();
} catch (_) {}
}