top property
int?
get
top
The offset of the window from the top edge of the screen in pixels. In
some circumstances a window may not be assigned a top
property; for
example, when querying closed windows from the sessions API.
Implementation
int? get top => _wrapped.top;
set
top
(int? v)
Implementation
set top(int? v) {
_wrapped.top = v;
}