addTags method

RestActionAble addTags(
  1. List<String> tags
)

Adds tags to the entity

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

Implementation

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