showRewardedVideo static method
Implementation
static Future<dynamic> showRewardedVideo(String? placementName) async {
if (placementName == null) {
await _channel.invokeMethod('showRewardedVideo');
} else {
await _channel.invokeMethod('showRewardedVideo', {
'placementName': placementName
});
}
}