setInterstitialCallback property

void setInterstitialCallback=(dynamic callback(InterstitialAdEvent event))

Define a callback to track Interstitial Ad events.

It receives a function callback with parameter event of type InterstitialAdEvent.

Implementation

static set setInterstitialCallback(
    Function(InterstitialAdEvent event) callback) {
  _interstitialAdEventListener = callback;
}