setTag method

Future<void> setTag({
  1. required String tag,
  2. required String value,
})

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,
  );
}