loadRewardAd static method

Future<void> loadRewardAd({
  1. required String posId,
  2. required int adId,
})

Implementation

static Future<void> loadRewardAd({
  required String posId,
  required int adId,
}) async {
  final void result = await _channel.invokeMethod('loadRewardAd', {
    "posId": posId,
    "adId": adId,
  });
  return result;
}