Future<Null> up()

End the gesture by releasing the pointer.

The object is no longer usable after this method has been called.

Source

Future<Null> up() {
  return TestAsyncUtils.guard(() async {
    assert(_pointer._isDown);
    await _dispatcher(_pointer.up(), _result);
    assert(!_pointer._isDown);
    return null;
  });
}