GADURequestConfiguration.m 366 B

123456789101112
  1. #import "GADURequestConfiguration.h"
  2. @implementation GADURequestConfiguration
  3. - (instancetype)init {
  4. self = [super init];
  5. if (self) {
  6. _tagForUnderAgeOfConsent = kGADURequestConfigurationTagForUnderAgeOfConsentUnspecified;
  7. _tagForChildDirectedTreatment =
  8. kGADURequestConfigurationTagForChildDirectedTreatmentUnspecified;
  9. }
  10. return self;
  11. }
  12. @end