removeTags static method

Future<void> removeTags(
  1. List<String> tags
)

Removes the tags with the specified keys and syncs audience data with the server. @param tags The keys of the tags that need to be removed.

Implementation

static Future<void> removeTags(List<String> tags) async {
  return MBAudienceManager.shared.removeTags(tags);
}