isAppInstalledNotify static method

Future<bool> isAppInstalledNotify()

Checks whether an app activation reminder pop-up is enabled.

Implementation

static Future<bool> isAppInstalledNotify() async {
  final bool? result = await Ads.instance.channel.invokeMethod(
    'HwAds-isAppInstalledNotify',
  );
  return result!;
}