disconnect method

Future<void> disconnect()

Disconnects a device and prevents the device from automatically activating further connections without user intervention.

Implementation

Future<void> disconnect() async {
  await _object.callMethod(_deviceInterfaceName, 'Disconnect', [],
      replySignature: DBusSignature(''));
}