FastAdInfo constructor

const FastAdInfo({
  1. String? androidNativeAdUnitId,
  2. String? iosNativeAdUnitId,
  3. String? androidBannerAdUnitId,
  4. String? iosBannerAdUnitId,
  5. String? androidInterstitialAdUnitId,
  6. String? iosInterstitialAdUnitId,
  7. String? androidRewardedAdUnitId,
  8. String? iosRewardedAdUnitId,
  9. String? androidSplashAdUnitId,
  10. String? iosSplashAdUnitId,
  11. String? androidRewardedInterstitialAdUnitId,
  12. String? iosRewardedInterstitialAdUnitId,
  13. List<String>? keywords,
  14. List<String>? countries,
  15. String? adServiceUriAuthority,
  16. int splashAdThreshold = kFastSplashAdThreshold,
  17. int refreshInterval = kFastAdRefreshInterval,
  18. bool autoRefresh = kFastAdAutoRefresh,
  19. bool showRemoveAdLink = kFastAdShowRemoveAdLink,
  20. bool androidNativeAdmobEnabled = kFastNativeAdmobEnabled,
  21. bool iosNativeAdmobEnabled = kFastNativeAdmobEnabled,
  22. int interstitialAdThreshold = kFastInterstitialAdThreshold,
  23. int splashAdTimeThreshold = kFastAdSplashAdTimeThreshold,
  24. FastAdUnits? androidSplashAdUnits,
  25. FastAdUnits? iosSplashAdUnits,
  26. FastAdUnits? androidInterstitialAdUnits,
  27. FastAdUnits? iosInterstitialAdUnits,
  28. FastAdUnits? androidRewardedAdUnits,
  29. FastAdUnits? iosRewardedAdUnits,
  30. FastAdUnits? androidNativeAdUnits,
  31. FastAdUnits? iosNativeAdUnits,
})

Create a new FastAdInfo instance.

Implementation

const FastAdInfo({
  this.androidNativeAdUnitId,
  this.iosNativeAdUnitId,
  this.androidBannerAdUnitId,
  this.iosBannerAdUnitId,
  this.androidInterstitialAdUnitId,
  this.iosInterstitialAdUnitId,
  this.androidRewardedAdUnitId,
  this.iosRewardedAdUnitId,
  this.androidSplashAdUnitId,
  this.iosSplashAdUnitId,
  this.androidRewardedInterstitialAdUnitId,
  this.iosRewardedInterstitialAdUnitId,
  this.keywords,
  this.countries,
  this.adServiceUriAuthority,
  this.splashAdThreshold = kFastSplashAdThreshold,
  this.refreshInterval = kFastAdRefreshInterval,
  this.autoRefresh = kFastAdAutoRefresh,
  this.showRemoveAdLink = kFastAdShowRemoveAdLink,
  this.androidNativeAdmobEnabled = kFastNativeAdmobEnabled,
  this.iosNativeAdmobEnabled = kFastNativeAdmobEnabled,
  this.interstitialAdThreshold = kFastInterstitialAdThreshold,
  this.splashAdTimeThreshold = kFastAdSplashAdTimeThreshold,
  this.androidSplashAdUnits,
  this.iosSplashAdUnits,
  this.androidInterstitialAdUnits,
  this.iosInterstitialAdUnits,
  this.androidRewardedAdUnits,
  this.iosRewardedAdUnits,
  this.androidNativeAdUnits,
  this.iosNativeAdUnits,
});