open method
Opens a new window.
Other resources
- Window.open from MDN.
Implementation
WindowBase open(String url, String name, [String? options]) {
final win =
options == null ? _open2(url, name) : _open3(url, name, options);
return _DOMWindowCrossFrame._createSafe(win);
}