cacheInterstitial static method

Future<void> cacheInterstitial({
  1. String? location,
})

Implementation

static Future<void> cacheInterstitial({String? location}) async {
  try {
    await _channel.invokeMethod('cacheInterstitial', {'location': location});
  } catch (e) {
    print(e.toString());
  }
}