clear static method

void clear()

Implementation

static void clear() {
  for (var element in _routeHistory) {
    _entryTimestamps.remove(element);
  }
  _routeHistory.clear();
  routeArguments.clear();
  routeVersion.value++;
}