XandrInterstitialBuilder constructor

XandrInterstitialBuilder({
  1. required InterstitialAd interstitialAd,
  2. required AsyncWidgetBuilder<bool> builder,
  3. Key? key,
})

A builder class for creating Xandr interstitial ads.

Use this builder to customize the properties of the interstitial ad before displaying it.

Implementation

XandrInterstitialBuilder({
  required InterstitialAd interstitialAd,
  required super.builder,
  super.key,
}) : super(future: interstitialAd.loadAd());