IOSSplashConfig constructor

const IOSSplashConfig({
  1. required String slotId,
  2. double? tolerateTimeout,
  3. bool? hideSkipButton,
  4. PangleExpressSize? expressSize,
})

The splash ad config for iOS

slotId The unique identifier of splash ad. tolerateTimeout optional. Maximum allowable load timeout, default 3s, unit s. hideSkipButton optional. Whether hide skip button, default NO. If you hide the skip button, you need to customize the countdown. expressSize optional, 配置广告宽高,默认全屏

Implementation

const IOSSplashConfig({
  required this.slotId,
  this.tolerateTimeout,
  this.hideSkipButton,
  this.expressSize,
});