void replaceState(String path, [ String query = "" ])

Changes the browsers URL to the normalized version of the given URL, and replaces the top item on the platform's history stack.

Source

void replaceState(String path, [String query = ""]) {
  this.platformStrategy.replaceState(null, "", path, query);
}