showRewarded method

Future<void> showRewarded({
  1. required String placementId,
})

展示激励视频

Implementation

Future<void> showRewarded({required String placementId}) async {
  return _channel.invokeMethod("showRewarded", <String, dynamic>{
    'placementId': placementId,
  });
}