setRefusedObjectives static method

Future setRefusedObjectives(
  1. List<String> objectiveIds
)

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);
}