setRefusedObjectives static method
Sets the complete list of refused objectives asynchronously.
This method replaces all existing refused objectives with the provided list. These objectives should not be used for data processing.
objectiveIds List of objective IDs that the user has refused
Returns a Future<dynamic> that completes when the operation is done
Implementation
static Future<dynamic> setRefusedObjectives(List<String> objectiveIds) {
return BlueConicPlatform.instance.setRefusedObjectives(objectiveIds);
}