location property

Point<int> location

The location of the window.

Implementation

Point<int> get location => _client.send(
    _handler.window.buildLocationRequest(),
    _handler.window.parseLocationResponse);
void location=(Point<int> value)

Sets the window location.

Implementation

set location(Point<int> value) {
  _client.send(_handler.window.buildSetLocationRequest(value),
      _handler.window.parseSetLocationResponse);
}