open method

Window? open([
  1. String url,
  2. String target,
  3. String features
])

The open() method of the Window interface loads a specified resource into a new or existing browsing context (that is, a tab, a window, or an iframe) under a specified name.

Implementation

external Window? open([
  String url,
  String target,
  String features,
]);