destroyBannerCache method

Future<void> destroyBannerCache()

Implementation

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