Closes the window.
This method should only succeed if the WindowBase object is script-closeable and the window calling close is allowed to navigate the window.
A window is script-closeable if it is either a window that was opened by another window, or if it is a window with only one document in its history.
A window might not be allowed to navigate, and therefore close, another window due to browser security features.
var other = window.open('http://www.example.com', 'foo'); // Closes other window, as it is script-closeable. other.close(); print(other.closed); // 'true' var newLocation = window.location ..href = 'http://www.mysite.com'; window.location = newLocation; // Does not close this window, as the history has changed. window.close(); print(window.closed); // 'false'
See also:
void close() native;
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-html/Window/close.html