loadInterstitialAd method

Future<bool> loadInterstitialAd(
  1. String? placementID,
  2. String? inventoryCode,
  3. CustomKeywords? customKeywords
)

loads an interstitial ad.

Implementation

Future<bool> loadInterstitialAd(
  String? placementID,
  String? inventoryCode,
  CustomKeywords? customKeywords,
) async {
  return _instance.loadInterstitialAd(
    placementID,
    inventoryCode,
    customKeywords,
  );
}