location property

Location get location
override

The current location of this window.

Location currentLocation = window.location;
print(currentLocation.href); // 'http://www.example.com:80/'

Implementation

Location get location => _location;
set location (LocationBase value)

Sets the window's location, which causes the browser to navigate to the new location.

Implementation

set location(value) {
  _location = value;
}