InterstitialAdListener constructor

InterstitialAdListener({
  1. void onDisplayed()?,
  2. void onDismissed()?,
  3. void onError(
    1. int code,
    2. String message
    )?,
  4. void onLoaded()?,
  5. void onClicked()?,
  6. void onLoggingImpression()?,
})

Implementation

InterstitialAdListener({
  this.onDisplayed,
  this.onDismissed,
  this.onError,
  this.onLoaded,
  this.onClicked,
  this.onLoggingImpression,
});