IOSConfig constructor

const IOSConfig({
  1. required String appId,
  2. PangleLogLevel? logLevel,
  3. int? coppa,
  4. int? gdpr,
  5. String? idfa,
})

Register the ad config for iOS

appId the unique identifier of the App logLevel optional. default none coppa optional. Coppa -1:defalut 0:adult 1:child

Implementation

const IOSConfig({
  required this.appId,
  this.logLevel,
  this.coppa,
  this.gdpr,
  this.idfa,
});