open property

({Document Function([String? unused1, String? unused2]) $1, WindowProxy? Function(Object url, String name, String features) $2}) get open

Overload accessor: $1, $2

Implementation

({
  /// Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
  ///  @param url Specifies a MIME type for the document.
  ///  @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
  ///  @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following values are supported.
  ///  @param replace Specifies whether the existing entry for the document is replaced in the history list.
  ///
  ///  [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)
  _i3.Document Function([
    _i2.String? unused1,
    _i2.String? unused2,
  ]) $1,

  /// Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
  _i3.WindowProxy? Function(
    _i2.Object url,
    _i2.String name,
    _i2.String features,
  ) $2,
}) get open => (
      $1: _open$1,
      $2: _open$2,
    );