showRewardVideoAd method
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;
}