updateUCPurposeCutomPreferenceOptionConsent static method

void updateUCPurposeCutomPreferenceOptionConsent(
  1. String cpOptionId,
  2. String cpId,
  3. String purposeId,
  4. bool consentValue,
)

Implementation

static void updateUCPurposeCutomPreferenceOptionConsent(
    String cpOptionId, String cpId, String purposeId, bool consentValue) {
  _channel.invokeMethod('updateUCPurposeCutomPreferenceOptionConsent', {
    'forCpOption': cpOptionId,
    'forCp': cpId,
    'forPurpose': purposeId,
    'consentValue': consentValue
  });
}