open method - Window class - dart:html library (original) (raw)
WindowBase open(
Opens a new window.
Other resources
- Window.openfrom 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);
}