setTag method

void setTag(
  1. String key,
  2. String value
)

Sets a tag to the Scope

Implementation

void setTag(String key, String value) {
  _tags[key] = value;
}