isCustomeads method

Future isCustomeads()

Implementation

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