addRefusedObjective static method

Future addRefusedObjective(
  1. String objectiveId
)

Adds an objective to the refused objectives list asynchronously.

This method adds the specified objective ID to the list of objectives that the user has refused consent for. These objectives should not be used for data processing.

objectiveId The ID of the objective to add to refused objectives Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> addRefusedObjective(String objectiveId) {
  return BlueConicPlatform.instance.addRefusedObjective(objectiveId);
}