onTwoTouches method
Called when a simultaneous two-pointer touch gesture occurs.
Two-touch events occur when two pointers land and lift within the gesture thresholds.
Parameters
pos: Midpoint between the two touch points.
Implementation
@override
void onTwoTouches(final Point<int> pos) {
_touchTwoCallback?.call(pos);
}