callUpdate method

Future<void> callUpdate(
  1. Map<String, Map<String, DBusValue>> properties, {
  2. bool noAutoStart = false,
  3. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.NetworkManager.Settings.Connection.Update()

Implementation

Future<void> callUpdate(Map<String, Map<String, DBusValue>> properties, {bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  await callMethod('org.freedesktop.NetworkManager.Settings.Connection', 'Update', [DBusDict(DBusSignature('s'), DBusSignature('a{sv}'), properties.map((key, value) => MapEntry(DBusString(key), DBusDict.stringVariant(value))))], replySignature: DBusSignature(''), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
}