getAdUnitId method
Implementation
String getAdUnitId(AdmobUnitId adValue) {
if (debugAd) {
// https://developers.google.com/admob/flutter/banner
// values for debug
if (GetPlatform.isAndroid) {
// debug value
return 'ca-app-pub-3940256099942544/9214589741';
} else {
// debug value
return 'ca-app-pub-3940256099942544/2435281174';
}
}
return adValue.productionUnitId;
}