addTag method

void addTag(
  1. String tag
)

Add a tag to the list of the tags for this place.

Implementation

void addTag(String tag) {
  if (!_tags.contains(tag)) {
    _tags.add(tag);
  }
  _tags.sort();
}