AndroidFeedConfig constructor

const AndroidFeedConfig({
  1. required String slotId,
  2. required PangleExpressSize expressSize,
  3. int? count,
  4. bool isSupportDeepLink = true,
})

The feed ad config for Android

slotId required. The unique identifier of a feed ad. count It is recommended to request no more than 3 ads. The maximum is 10. default 3 isSupportDeepLink optional. Whether to support deeplink. expressSize 期望信息流广告宽高

Implementation

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