open method

WindowBase open(
  1. String url,
  2. String name, [
  3. String? options
])

Opens a new window.

Other resources

Implementation

WindowBase open(String url, String name, [String? options]) {
  final win =
      options == null ? _open2(url, name) : _open3(url, name, options);
  return _DOMWindowCrossFrame._createSafe(win);
}