callGetAllAccessPoints method
Invokes org.freedesktop.NetworkManager.Device.Wireless.GetAllAccessPoints()
Implementation
Future<List<DBusObjectPath>> callGetAllAccessPoints({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
var result = await callMethod('org.freedesktop.NetworkManager.Device.Wireless', 'GetAllAccessPoints', [], replySignature: DBusSignature('ao'), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
return result.returnValues[0].asObjectPathArray().toList();
}