callListConnections method

Future<List<DBusObjectPath>> callListConnections({
  1. bool noAutoStart = false,
  2. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.NetworkManager.Settings.ListConnections()

Implementation

Future<List<DBusObjectPath>> callListConnections({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  var result = await callMethod('org.freedesktop.NetworkManager.Settings', 'ListConnections', [], replySignature: DBusSignature('ao'), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
  return result.returnValues[0].asObjectPathArray().toList();
}