AndroidNativeBannerConfig constructor

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

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

Implementation

const AndroidNativeBannerConfig({
  required this.slotId,
  required this.size,
  this.isSupportDeepLink = true,
});