exitCoreContent static method

Future<void> exitCoreContent(
  1. List<String> labels
)

Inform Nami platform when a user finished consuming content that is core to your app experience.

labels is a list of strings where the list is ordered by the relationship of the content, such as "video", "basketball", "michael jordan". Note that the exact same labels list must be used in both enterCoreContent and exitCoreContent calls as they both combined make one complete entry of core content experience

Implementation

static Future<void> exitCoreContent(List<String> labels) {
  return channel.invokeMethod("exitCoreContent", labels);
}