addConsentedObjective static method

Future addConsentedObjective(
  1. String objectiveId
)

Adds an objective to the consented objectives list asynchronously.

This method adds the specified objective ID to the list of objectives that the user has consented to for data processing purposes.

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

Implementation

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