NativeAdOptions constructor

NativeAdOptions({
  1. AdChoicesPlacement? adChoicesPlacement,
  2. MediaAspectRatio? mediaAspectRatio,
  3. VideoOptions? videoOptions,
  4. bool? requestCustomMuteThisAd,
  5. bool? shouldRequestMultipleImages,
  6. bool? shouldReturnUrlsForImageAssets,
})

Construct a NativeAdOptions, an optional class used to further customize native ad requests.

Implementation

NativeAdOptions({
  this.adChoicesPlacement,
  this.mediaAspectRatio,
  this.videoOptions,
  this.requestCustomMuteThisAd,
  this.shouldRequestMultipleImages,
  this.shouldReturnUrlsForImageAssets,
});