parent 属性
重写
对此窗口的父窗口的引用。
如果此 WindowBase 没有父窗口,parent 将返回对该 WindowBase 的引用。
IFrameElement myIFrame = new IFrameElement();
window.document.body.elements.add(myIFrame);
print(myIframe.contentWindow.parent == window) // 'true'
print(window.parent == window) // 'true'
实现
WindowBase? get parent => _convertNativeToDart_Window(this._get_parent);