setAppInstalledNotify static method

Future<void> setAppInstalledNotify(
  1. bool status
)

Sets whether to enable an app activation reminder pop-up.

Implementation

static Future<void> setAppInstalledNotify(bool status) async {
  await Ads.instance.channel.invokeMethod(
    'HwAds-setAppInstalledNotify',
    <String, dynamic>{
      'status': status,
    },
  );
}