location property
override
The current location of this window.
Location currentLocation = window.location;
print(currentLocation.href); // 'http://www.example.com:80/'
Implementation
Location get location => _location;
Sets the window's location, which causes the browser to navigate to the new location.
Implementation
set location(value) {
_location = value;
}