showOpenAds function

dynamic showOpenAds()

Implementation

showOpenAds() {
  if (_settings == null) {
    return;
  }

  if (_settings?.adSetting?.appVersionCode == appVersionCode) {
    return;
  }

  getAppLifecycleReactor()?.appOpenAdManager.showAdIfAvailable();
}