drawAttention property
bool?
get
drawAttention
If true
, causes the window to be displayed in a manner that draws the
user's attention to the window, without changing the focused window. The
effect lasts until the user changes focus to the window. This option has
no effect if the window already has focus. Set to false
to cancel a
previous drawAttention
request.
Implementation
bool? get drawAttention => _wrapped.drawAttention;
set
drawAttention
(bool? v)
Implementation
set drawAttention(bool? v) {
_wrapped.drawAttention = v;
}