adsONorOFf method

  1. @override
Future adsONorOFf()
override

Implementation

@override
adsONorOFf() async {
  try {
    var result = await platform.invokeMethod('isAD');
    isAd = result;
  } on PlatformException catch (e) {
    isAd = false;
  }
}