replaceState static method
Replaces the provided from
with the specified to
in the current URL.
Implementation
static void replaceState(String from, String to) {
router.replace(from, to);
web.window.history.replaceState(
null,
web.document.title,
Uri.base.toString().replaceFirst(from, to),
);
}