onPointerUp method
Called when a pointer is released.
Parameters
pointerId: Pointer identifier supplied by the platform.pos: Pointer location in view coordinates.
Implementation
@override
void onPointerUp(final int pointerId, final Point<num> pos) {
_pointerUpCallback?.call(pointerId, pos);
}