callAppOpenAds method

Future callAppOpenAds()

Implementation

Future callAppOpenAds() async {
  try {
    return true;
  } on PlatformException catch (e) {
    if (kDebugMode) {
      print("Failed to call open ad: '${e.message}'.");
    }
    return true;
  }
}