callUpdate method
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);
}