updateUCPurposeTopicConsent static method

void updateUCPurposeTopicConsent(
  1. String topicId,
  2. String purposeId,
  3. bool consentValue
)

Implementation

static void updateUCPurposeTopicConsent(
    String topicId, String purposeId, bool consentValue) {
  _channel.invokeMethod('updateUCPurposeTopicConsent', {
    'forTopic': topicId,
    'forPurpose': purposeId,
    'consentValue': consentValue
  });
}