supportAd static method

bool supportAd()

Checks if the current platform supports ads.

Only Android and iOS are supported by Google Mobile Ads. Returns true if the app is running on one of these platforms.

Implementation

static bool supportAd() {
  return defaultTargetPlatform == TargetPlatform.android ||
      defaultTargetPlatform == TargetPlatform.iOS;
}