setAutoconnect method

Future<void> setAutoconnect(
  1. bool value
)

Sets if this device is allowed to automatically connect.

Implementation

Future<void> setAutoconnect(bool value) async {
  await _object.setProperty(
      _deviceInterfaceName, 'Autoconnect', DBusBoolean(value));
}