setConsentedObjectives static method

Future setConsentedObjectives(
  1. List<String> objectiveIds
)

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