getMobileAdsUnitId method

String getMobileAdsUnitId({
  1. required AdType adType,
  2. bool isTest = kDebugMode,
})

Get MobileAds unit id

Implementation

String getMobileAdsUnitId({
  required AdType adType,
  bool isTest = kDebugMode,
}) {
  if (isTest) {
    // test ad id
    return 'ca-app-pub-3940256099942544/6300978111';
  } else if (!kIsWeb && Platform.isAndroid) {
    return getAndroidAdUnitId(adType);
  } else if (!kIsWeb && Platform.isIOS) {
    return getIOSAdUnitId(adType);
  } else {
    return '';
  }
}