void resizeBy(
num x,
num y
)

Resizes this window by an offset.

Other resources

Source

/**
 * Resizes this window by an offset.
 *
 * ## Other resources
 *
 * * [Window resizeBy] (http://docs.webplatform.org/wiki/dom/methods/resizeBy)
 * from WebPlatform.org.
 */
@DomName('Window.resizeBy')
@DocsEditable()
void resizeBy(num x, num y) => _blink.BlinkWindow.instance.resizeBy_Callback_2_(unwrap_jso(this), x, y);