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 tag,
required value,
}) async {
return _tagsManager.setTag(
tag: tag,
value: value,
);
}