showRewardVideoAd static method

Future<bool> showRewardVideoAd({
  1. FlutterTencentBiddingResult? result,
})

显示激励广告

result 竞价成功、失败后调用 FlutterTencentBiddingResult ,isBidding = true时必传

Implementation

static Future<bool> showRewardVideoAd(
    {FlutterTencentBiddingResult? result}) async {
  return await _channel.invokeMethod("showRewardVideoAd", result?.toJson() ?? {});
}