setConsentedObjectives static method
Sets the complete list of consented objectives asynchronously.
This method replaces all existing consented objectives with the provided list. Objectives represent different purposes for data processing.
objectiveIds List of objective IDs that the user has consented to
Returns a Future<dynamic> that completes when the operation is done
Implementation
static Future<dynamic> setConsentedObjectives(List<String> objectiveIds) {
return BlueConicPlatform.instance.setConsentedObjectives(objectiveIds);
}