left property

int? get left

The number of pixels to position the new window from the left edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels.

Implementation

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

Implementation

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