Future<Null> tapAt(Point location, { int pointer: 1 })

Dispatch a pointer down / pointer up sequence at the given location.

Source

Future<Null> tapAt(Point location, { int pointer: 1 }) {
  return TestAsyncUtils.guard(() async {
    TestGesture gesture = await startGesture(location, pointer: pointer);
    await gesture.up();
    return null;
  });
}