location 属性
重写
此窗口的当前位置。
Location currentLocation = window.location;
print(currentLocation.href); // 'http://www.example.com:80/'
实现
Location get location => _location;
设置窗口的位置,这会导致浏览器导航到新的位置。
实现
set location(value) {
_location = value;
}