AndroidInterstitialConfig constructor

const AndroidInterstitialConfig({
  1. required String slotId,
  2. required PangleExpressSize expressSize,
  3. bool isSupportDeepLink = true,
})

The interstitial ad config for Android

slotId required. The unique identifier of a interstitial ad. isSupportDeepLink optional. Whether to support deep link. default true. expressSize optional. 模板宽高

Implementation

const AndroidInterstitialConfig({
  required this.slotId,
  required this.expressSize,
  this.isSupportDeepLink = true,
});