focused property
bool?
get
focused
If true, opens an active window. If false, opens an inactive window.
Implementation
bool? get focused => _wrapped.focused;
set
focused
(bool? v)
Implementation
set focused(bool? v) {
_wrapped.focused = v;
}