adsONorOFf method

  1. @override
Future adsONorOFf()
override

Implementation

@override
Future adsONorOFf() async {
  bool isAd = false;
  try {
    var result = await platform.invokeMethod('isAD');

    isAd = result;
  } on PlatformException {
    isAd = false;
  }
  return isAd;
}