init method

void init(
  1. List tags,
  2. bool showPrefix
)

Set tags

Implementation

void init(List tags, bool showPrefix) {
  this.tags = Set.from(tags);
  tagStates['show_prefix_icon'] = showPrefix;
  super.notifyListeners();
}