removeTag method

Future<void> removeTag(
  1. String tag
)

Removes the tag with the specified key in the MBAudienceTagsManager instance. @param tag The tag that needs to be removed.

Implementation

Future<void> removeTag(String tag) async {
  return _tagsManager.removeTag(tag);
}