On this page
opener property
WindowBase openerA reference to the window that opened this one.
Window thisWindow = window;
WindowBase otherWindow = thisWindow.open('http://www.example.com/', 'foo');
print(otherWindow.opener == thisWindow); // 'true'
Source
@DomName('Window.opener')
@DocsEditable()
WindowBase get opener => _convertNativeToDart_Window(
_blink.BlinkWindow.instance.opener_Getter_(this));
void opener=(Source
@DomName('Window.opener')
@DocsEditable()
set opener(Window value) =>
_blink.BlinkWindow.instance.opener_Setter_(this, value);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/Window/opener.html