cacheRewardedVideo static method

Future<void> cacheRewardedVideo(
  1. dynamic listener
)

Implementation

static Future<void> cacheRewardedVideo(listener) async {
  _channel.setMethodCallHandler(
      (MethodCall call) async => await _platformCallHandler(call, listener));
  return _channel.invokeMethod("cacheRewarded");
}