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