location property
The location of the window.
Implementation
Point<int> get location => _client.send(
_handler.window.buildLocationRequest(),
_handler.window.parseLocationResponse);
Sets the window location.
Implementation
set location(Point<int> value) {
_client.send(_handler.window.buildSetLocationRequest(value),
_handler.window.parseSetLocationResponse);
}