setSize method

Future<void> setSize(
  1. Rectangle<int> size
)

Sets the window size.

Implementation

Future<void> setSize(Rectangle<int> size) => _client.send(
    _handler.window.buildSetSizeRequest(size),
    _handler.window.parseSetSizeResponse);