showInterAd abstract method

void showInterAd({
  1. required dynamic callBack({
    1. InterstitialAd? ad,
    2. AdError? error,
    }),
})

Displays the interstitial ad. A callback function is passed to handle success or failure of the ad.

Implementation

void showInterAd({
  required Function({InterstitialAd? ad, AdError? error}) callBack,
});