AndroidFullscreenVideoConfig constructor

const AndroidFullscreenVideoConfig({
  1. required String slotId,
  2. bool isSupportDeepLink = true,
  3. PangleOrientation orientation = PangleOrientation.veritical,
  4. PangleLoadingType loadingType = PangleLoadingType.normal,
  5. PangleExpressSize? expressSize,
})

The full screen video ad config for Android

slotId required. The unique identifier of a full screen video ad. isSupportDeepLink optional. Whether to support deeplink. default true. orientation 设置期望视频播放的方向,默认PangleOrientation.veritical loadingType optional. 加载广告的类型,默认PangleLoadingType.normal expressSize optional. 模板宽高

Implementation

const AndroidFullscreenVideoConfig({
  required this.slotId,
  this.isSupportDeepLink = true,
  this.orientation = PangleOrientation.veritical,
  this.loadingType = PangleLoadingType.normal,
  this.expressSize,
});