IOSConfig constructor

const IOSConfig({
  1. required String appId,
  2. PangleLogLevel? logLevel,
  3. String? idfa,
})

Register the ad config for iOS

appId the unique identifier of the App logLevel optional. default none

Implementation

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