IOSBannerConfig constructor

const IOSBannerConfig({
  1. required String slotId,
  2. required PangleExpressSize expressSize,
  3. int? interval,
})

The feed ad config for iOS

slotId required. The unique identifier of a banner ad. expressSize optional. 模板宽高 interval The carousel interval, in seconds, is set in the range of 30~120s, and is passed during initialization. If it does not meet the requirements, it will not be in carousel ad.

Implementation

const IOSBannerConfig({
  required this.slotId,
  required this.expressSize,
  this.interval,
});