createBannerCache method

Future<void> createBannerCache()

Creates app open ad placement.

Implementation

Future<void> createBannerCache() async {
  try {
    await AatkitFlutterPluginPlatform.instance.createBannerCache();
  } on PlatformException catch (e) {
    log("PlatformException, error: $e");
  }
}