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