removeTag method

Future<void> removeTag(
  1. String key
)

Removes a tag from the Scope

Implementation

Future<void> removeTag(String key) async {
  _tags.remove(key);
  await _callScopeObservers(
      (scopeObserver) async => await scopeObserver.removeTag(key));
}