I want to execute a function after the interstitial ad is finished and closed/removed by the user. Is there a way to listen to this event?
I tried to use then after show, but this is not working, it already executes the function after the ad is loaded.
_interstitialAd.show().then((_) => {
foo()
});