BannerAd.dispose Not Working Flutter Admob
You need to dispose the banner like this
try {
_myBanner?.dispose();
_myBanner = null;
} catch (ex) {
log("banner dispose error");
}
You need to dispose the banner like this
try {
_myBanner?.dispose();
_myBanner = null;
} catch (ex) {
log("banner dispose error");
}