isRewardedVideoPlacementCapped static method

Future<bool> isRewardedVideoPlacementCapped({
  1. required String placementName,
})

Returns the capping state of an ad placement named placementName.

Native SDK Reference

  • Android: isRewardedVideoPlacementCapped
  • iOS: isRewardedVideoCappedForPlacement
    

Implementation

static Future<bool> isRewardedVideoPlacementCapped(
    {required String placementName}) async {
  final args =
      OutgoingValueParser.isRewardedVideoPlacementCapped(placementName);
  final bool isCapped =
      await _channel.invokeMethod('isRewardedVideoPlacementCapped', args);
  return isCapped;
}