AdropInterstitialListener

A listener called when load or show is called in the AdropInterstitialAd.


Constructors

AdropInterstitialListener

class AdropInterstitialListener {
  AdropAdCallback? onAdReceived;
  AdropAdCallback? onAdClicked;
  AdropAdCallback? onAdImpression;
  AdropAdCallback? onAdWillPresentFullScreen;
  AdropAdCallback? onAdDidPresentFullScreen;
  AdropAdCallback? onAdWillDismissFullScreen;
  AdropAdCallback? onAdDidDismissFullScreen;
  AdropAdErrorCallback? onAdFailedToReceive;
  AdropAdErrorCallback? onAdFailedToShowFullScreen;
}

Properties

onAdReceived -> AdropAdCallback?

Gets invoked when the interstitial ad is received.

onAdClicked -> AdropAdCallback?

Gets invoked when the interstitial ad is clicked.

onAdImpression -> AdropAdCallback?

Gets invoked when the interstitial ad is shown.

onAdWillPresentFullScreen -> AdropAdCallback?

Gets invoked when the interstitial ad is about to appear. (iOS only)

onAdDidPresentFullScreen -> AdropAdCallback?

Gets invoked when the interstitial ad appeared.

onAdWillDismissFullScreen -> AdropAdCallback?

Gets invoked when the interstitial ad is about to disappear. (iOS only)

onAdDidDismissFullScreen -> AdropAdCallback?

Gets invoked when the interstitial ad disappeared.

onAdFailedToReceive -> AdropAdErrorCallback?

Gets invoked with AdropErrorCode when the interstitial ad fails to be received.

onAdFailedToShowFullScreen -> AdropAdErrorCallback?

Gets invoked with AdropErrorCode when the interstitial ad fails to be shown.

Last updated