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