removeTag static method

Future<void> removeTag(
  1. String tag
)

Removes the tag with the specified key and syncs audience data with the server. @param tag The key of the tag that needs to be removed.

Implementation

static Future<void> removeTag(String tag) async {
  return MBAudienceManager.shared.removeTag(tag);
}