loadAd method
Loads the ad asynchronously.
Returns a Future that completes with a bool value indicating whether the ad was successfully loaded.
Implementation
Future<bool> loadAd() {
return _controller.loadInterstitialAd(
placementID: placementID,
inventoryCode: inventoryCode,
customKeywords: customKeywords,
);
}