Future<Null> moveBy(Offset offset)

Send a move event moving the pointer by the given offset.

Source

Future<Null> moveBy(Offset offset) {
  assert(_pointer._isDown);
  return moveTo(_pointer.location + offset);
}