disconnect method

Future<void> disconnect()

断开连接

Implementation

Future<void> disconnect() async {
  await _cancelNotifies();
  await _device.disconnect();
}