AndroidNativeBannerConfig constructor

const AndroidNativeBannerConfig({
  1. required String slotId,
  2. required PangleSize size,
  3. bool isSupportDeepLink = true,
  4. int? interval,
})

The feed ad config for Android

slotId required. The unique identifier of a banner ad. isSupportDeepLink optional. Whether to support deeplink. default true. size ads size 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 AndroidNativeBannerConfig({
  required this.slotId,
  required this.size,
  this.isSupportDeepLink = true,
  this.interval,
});