> For the complete documentation index, see [llms.txt](https://docs.ep.mburger.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ep.mburger.cloud/flutter-docs/audience/tags.md).

# Tags

You can set tags to assign to a user/device (e.g. if user has done an action set a tag), so you can target those users later:

To set a tag:

```dart
MBAudience.setTag(tag: 'TAG', value: 'VALUE');
```

To remove it:

```dart
MBAudience.removeTag('TAG');
```
