left property

int? get left

The offset from the left edge of the screen to move the window to in pixels. This value is ignored for panels.

Implementation

int? get left => _wrapped.left;
set left (int? v)

Implementation

set left(int? v) {
  _wrapped.left = v;
}