window property

Window? get window

The windows.Window, if this entry describes a window. Either this or sessions.Session.tab will be set.

Implementation

Window? get window => _wrapped.window?.let(Window.fromJS);
set window (Window? v)

Implementation

set window(Window? v) {
  _wrapped.window = v?.toJS;
}