FFAdMobAction constructor
FFAdMobAction({
- FFAdMobLoadInterstitialAd? load,
- FFAdMobShowInterstitialAd? show,
- FFAdMobRequestConsent? requestConsent,
- FFAdMobCheckConsentNotRequired? checkConsentNotRequired,
Implementation
factory FFAdMobAction({
FFAdMobLoadInterstitialAd? load,
FFAdMobShowInterstitialAd? show,
FFAdMobRequestConsent? requestConsent,
FFAdMobCheckConsentNotRequired? checkConsentNotRequired,
}) {
final result = create();
if (load != null) result.load = load;
if (show != null) result.show = show;
if (requestConsent != null) result.requestConsent = requestConsent;
if (checkConsentNotRequired != null)
result.checkConsentNotRequired = checkConsentNotRequired;
return result;
}