up method
End the gesture by releasing the pointer.
The object is no longer usable after this method has been called.
Implementation
Future<void> up() {
return TestAsyncUtils.guard<void>(() async {
assert(_pointer._isDown);
await _dispatcher(_pointer.up(), _result);
assert(!_pointer._isDown);
});
}