showInterstitialVideo static method
Implementation
static Future<void> showInterstitialVideo(AppLovinListener listener) async {
try {
_channel.setMethodCallHandler(
(MethodCall call) async => handleMethod(call, listener));
await _channel.invokeMethod<void>('ShowInterVideo');
} catch (e) {
print(e.toString());
}
}