showRewardAd static method

Future<bool> showRewardAd(
  1. String posId
)

展示激励广告

Implementation

static Future<bool> showRewardAd(String posId) async {
  final bool result = await _methodChannel.invokeMethod('showRewardVideoAd', {
    'posId': posId,
  });
  return result;
}