isExistActiveItem method

bool isExistActiveItem(
  1. String tag
)

Check if the tag is in the active items

Implementation

bool isExistActiveItem(String tag) {
  return activeItemTags.contains(tag);
}