callBackAds method
Implementation
@override
Future<bool> callBackAds() async {
try {
return await platform.invokeMethod('backAd');
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to call backAd interstitial ad: '${e.message}'.");
}
return true;
}
}