void moveBy(
num x,
num y
)

Moves this window.

x and y can be negative.

Other resources

Source

/**
 * Moves this window.
 *
 * x and y can be negative.
 *
 * ## Other resources
 *
 * * [Window.moveBy]
 * (https://developer.mozilla.org/en-US/docs/Web/API/Window.moveBy) from MDN.
 * * [Window.moveBy]
 * (http://dev.w3.org/csswg/cssom-view/#dom-window-moveby) from W3C.
 */
@DomName('Window.moveBy')
@DocsEditable()
void moveBy(num x, num y) => _blink.BlinkWindow.instance.moveBy_Callback_2_(unwrap_jso(this), x, y);