clearNudges method

Future<void> clearNudges()

Removes all nudges for the current screen.

Implementation

Future<void> clearNudges() async {
  if (!_autoCreated){
    print("Auto-created instance, skipping clearNudges");
    await _nudgeCoreV2NativeServices.invokeNativeMethod(
    'nudge_clear_nudges',
      {},
    );
  }

}