void resizeTo(
num width,
num height
)

Resizes this window to a specific width and height.

Other resources

Source

/**
 * Resizes this window to a specific width and height.
 *
 * ## Other resources
 *
 * * [Window resizeTo] (http://docs.webplatform.org/wiki/dom/methods/resizeTo)
 * from WebPlatform.org.
 */
@DomName('Window.resizeTo')
@DocsEditable()
void resizeTo(num width, num height) => _blink.BlinkWindow.instance.resizeTo_Callback_2_(unwrap_jso(this), width, height);