show method
Shows the interstitial ad if it has been loaded.
Implementation
Future<void> show() async {
try {
await _platform.invokeMethod('showInterstitial');
} on PlatformException catch (e) {
print("Failed to show interstitial ad: '${e.message}'");
}
}