AdropPopupListener

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


Constructors

AdropPopupListener

class AdropPopupAdListener {
  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 popup ad is received.

onAdClicked -> AdropAdCallback?

Gets invoked when the popup ad is clicked.

onAdImpression -> AdropAdCallback?

Gets invoked when the popup ad is shown.

onAdWillPresentFullScreen -> AdropAdCallback?

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

onAdDidPresentFullScreen -> AdropAdCallback?

Gets invoked when the popup ad appeared.

onAdWillDismissFullScreen -> AdropAdCallback?

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

onAdDidDismissFullScreen -> AdropAdCallback?

Gets invoked when the popup ad disappeared.

onAdFailedToReceive -> AdropAdErrorCallback?

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

onAdFailedToShowFullScreen -> AdropAdErrorCallback?

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

Last updated