setTag method
Sets a tag in the MBAudienceTagsManager instance.
@param tag The tag.
@param value The value of the tag.
Implementation
Future<void> setTag({
required String tag,
required String value,
}) async {
return _tagsManager.setTag(
tag: tag,
value: value,
);
}