removeTags method

void removeTags(
  1. List<String> tags
)

Removes tags from the channel.

Implementation

void removeTags(List<String> tags) {
  _operations.add({
    TAG_OPERATION_TYPE: TAG_OPERATION_REMOVE,
    TAG_OPERATION_TAGS: tags
  });
}