onPinchSwipe method

  1. @override
void onPinchSwipe(
  1. Point<int> centerPosInPix,
  2. double zoomingSpeedInMMPerSec,
  3. double rotatingSpeedInMMPerSec
)

Implementation

@override
void onPinchSwipe(
  final Point<int> centerPosInPix,
  final double zoomingSpeedInMMPerSec,
  final double rotatingSpeedInMMPerSec,
) {
  _pinchSwipeCallback?.call(
    centerPosInPix,
    zoomingSpeedInMMPerSec,
    rotatingSpeedInMMPerSec,
  );
}