getAd method

NativeAd? getAd()

Implementation

NativeAd? getAd() {
  if (_isLoaded && _nativeAd != null) {
    return _nativeAd;
  }

  // If not loaded, try to load again
  if (!_isLoading) {
    loadAd();
  }

  return null;
}