setTags static method

Future<void> setTags({
  1. required Map<String, String> tags,
})

Set multiple tags with a Map, the keys of the map are the tags, the values the values for the corresponding tag. After setting the new tags the new audience data are sent to the server. @param tags The map of tags and values.

Implementation

static Future<void> setTags({required Map<String, String> tags}) async {
  return MBAudienceManager.shared.setTags(tags: tags);
}