clearAll static method

void clearAll()

Clears all tags without exporting.

Useful for cleanup at application boundaries or test teardown.

Implementation

static void clearAll() {
  assert(() {
    _tags.clear();
    return true;
  }());
}