replaceState method
Implementation
void replaceState(dynamic data, String title, String? url) {
url = _resolve(url ?? window.location.href);
final state = _HistoryState(data, title, url);
_stack.removeLast();
_stack.add(state);
_setStateAndDispatchEvent(state);
}