boundsOriginy property

int? get boundsOriginy

If set, updates the display's logical bounds origin along the y-axis. See documentation for boundsOriginX parameter.

Implementation

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

Implementation

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