setTags method

void setTags(
  1. String group,
  2. List<String> tags
)

Overwrite the current set of tags on the group.

Implementation

void setTags(String group, List<String> tags) {
  _operations.add({
    TAG_OPERATION_TYPE: TAG_OPERATION_SET,
    TAG_OPERATION_GROUP_NAME: group,
    TAG_OPERATION_TAGS: tags
  });
}