replaceState static method

void replaceState(
  1. String from,
  2. String to
)

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),
  );
}