void removeLocalHistoryEntry(LocalHistoryEntry entry)

Remove a local history entry from this route.

The entry's onRemove callback, if any, will be called synchronously.

Source

void removeLocalHistoryEntry(LocalHistoryEntry entry) {
  assert(entry != null);
  assert(entry._owner == this);
  assert(_localHistory.contains(entry));
  _localHistory.remove(entry);
  entry._owner = null;
  entry._notifyRemoved();
}