withGppConsent method

Builder withGppConsent(
  1. String gppString,
  2. Set<int> gppSectionIds
)

Set Flurry Consent for the IAB Global Privacy Platform (GPP). To pass an IAB string to Flurry.

Set Flurry Consent for the IAB Global Privacy Platform (GPP) with the GPP string of gppString, and the GPP section IDs of gppSectionIds.

Implementation

Builder withGppConsent(String gppString, Set<int> gppSectionIds) {
  builderAgent?.withGppConsent(gppString, gppSectionIds);
  return this;
}