callGetSettings method

Future<Map<String, Map<String, DBusValue>>> callGetSettings({
  1. bool noAutoStart = false,
  2. bool allowInteractiveAuthorization = false,
})

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

Implementation

Future<Map<String, Map<String, DBusValue>>> callGetSettings({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  var result = await callMethod('org.freedesktop.NetworkManager.Settings.Connection', 'GetSettings', [], replySignature: DBusSignature('a{sa{sv}}'), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
  return result.returnValues[0].asDict().map((key, value) => MapEntry(key.asString(), value.asStringVariantDict()));
}