removeTags method

RestActionAble removeTags(
  1. List<String> tags
)

Removes tags from the entity

entity.removeTags(['objDTest','objDTest2']).queue()

Implementation

RestActionAble removeTags(List<String> tags) => StraitWidget.builder.create(
    For.of(tags.map((tag) => Tag(tag, entity: this, value: false)).toList()));