showOpenAds function

dynamic showOpenAds(
  1. BuildContext context
)

Implementation

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

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

  if ((_settings?.isAllAds ?? false) == false) {
    return;
  }
  print("Step 1");
  getAppLifecycleReactor()?.appOpenAdManager.showAdIfAvailable(context);
}