- override
Override to provide behavior for the primary pointer when the gesture is still possible.
Source
@override
void handlePrimaryPointer(PointerEvent event) {
if (event is PointerUpEvent) {
_finalPosition = event.position;
_checkUp();
}
}