Send a move event moving the pointer to the given location.
Future<Null> moveTo(Point location) { return TestAsyncUtils.guard(() { assert(_pointer._isDown); return _dispatcher(_pointer.move(location), _result); }); }