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

Changes the browsers URL to the normalized version of the given URL, and pushes a new item onto the platform's history.

Source

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