Future<Null> moveTo(Point location)

Send a move event moving the pointer to the given location.

Source

Future<Null> moveTo(Point location) {
  return TestAsyncUtils.guard(() {
    assert(_pointer._isDown);
    return _dispatcher(_pointer.move(location), _result);
  });
}