isBackgroudAds method
Implementation
Future isBackgroudAds() async {
try {
return true;
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to get battery level: '${e.message}'.");
}
return true;
}
}
Future isBackgroudAds() async {
try {
return true;
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to get battery level: '${e.message}'.");
}
return true;
}
}