showRewardVideoAd method

  1. @override
Future<bool> showRewardVideoAd(
  1. String posId, {
  2. bool playMuted = false,
  3. String? customData,
  4. String? userId,
})
override

Implementation

@override
Future<bool> showRewardVideoAd(
  String posId, {
  bool playMuted = false,
  String? customData,
  String? userId,
}) async {
  final bool result = await methodChannel.invokeMethod(
    'showRewardVideoAd',
    {
      'posId': posId,
      'playMuted': playMuted,
      'customData': customData,
      'userId': userId,
    },
  );
  return result;
}