tapUp static method
Simulates a tap up event at the specified position.
Example:
Offset? offset = EaseSimulator.getWidgetOffset(key);
await EaseSimulator.tapUp(offset);
Implementation
static Future tapUp(Offset offset, {bool showGestureMarker = true}) async {
GestureBinding.instance.handlePointerEvent(PointerUpEvent(
position: offset,
));
if (showGestureMarker) {
showGestureIndicator(position: offset);
}
}