removeTags method
- String group,
- List<
String> tags
Removes tags from a group.
Implementation
void removeTags(String group, List<String> tags) {
_operations.add({
TAG_OPERATION_TYPE: TAG_OPERATION_REMOVE,
TAG_OPERATION_GROUP_NAME: group,
TAG_OPERATION_TAGS: tags
});
}