cacheInterstitial static method

Future<void> cacheInterstitial(
  1. dynamic listener
)

Implementation

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