focused property

bool? get focused

If true, brings the window to the front; cannot be combined with the state 'minimized'. If false, brings the next window in the z-order to the front; cannot be combined with the state 'fullscreen' or 'maximized'.

Implementation

bool? get focused => _wrapped.focused;
set focused (bool? v)

Implementation

set focused(bool? v) {
  _wrapped.focused = v;
}