showRewardedVideo static method

Future showRewardedVideo(
  1. String? placementName
)

Implementation

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