Inform the SDK when a user has finished consuming content that is core to your app experience.

NamiMLManager.exitCoreContent(label: String)
NamiMLManager.exitCoreContent(label: String)
// Use version that takes List<String>
NativeModules.NamiMLManagerBridge.exitCoreContentWithLabel(String);

Arguments

  • (required) label: String that describes the nature of the content being consumed. The same string string must be used in both enterCoreContent and exitCoreContent calls.
NamiMLManager.exitCoreContent(labels: [String])
NamiMLManager.exitCoreContent(List<String> labels);
NamiMLManager.exitCoreContent(List<String> labels);

Arguments

  • (required) labels: A list of strings of different labels that describe the content that was consumed. Note the exact same list must be used in both the enterCoreContent and exitCoreContent calls to work correctly.