updateCCPAString static method

Future<void> updateCCPAString({
  1. String? ccpaString,
})

Updates CCPA privacy string (also known as IAB US privacy string)

The consentString should be a correct string formatted according to IAB specification

Implementation

static Future<void> updateCCPAString({String? ccpaString}) {
  final params = <String, Object>{
    if (ccpaString != null) "ccpaString": ccpaString,
  };
  return FairBidInternal._channel.invokeMethod("updateCCPA", params);
}