setLocation method

Future<void> setLocation(
  1. Point<int> point
)

Sets the window location.

Implementation

Future<void> setLocation(Point<int> point) => _client.send(
    _handler.window.buildSetLocationRequest(point),
    _handler.window.parseSetLocationResponse);