state property
WindowState?
get
state
The initial state of the window. The minimized
, maximized
, and
fullscreen
states cannot be combined with left
, top
, width
, or
height
.
Implementation
WindowState? get state => _wrapped.state?.let(WindowState.fromJS);
set
state
(WindowState? v)
Implementation
set state(WindowState? v) {
_wrapped.state = v?.toJS;
}