Future<TestGesture> startGesture(Point downLocation, { int pointer: 1 })

Begins a gesture at a particular point, and returns the TestGesture object which you can use to continue the gesture.

Source

Future<TestGesture> startGesture(Point downLocation, { int pointer: 1 }) {
  return TestGesture.down(downLocation, pointer: pointer, hitTester: hitTestOnBinding, dispatcher: sendEventToBinding);
}