PinchRotateListener constructor

PinchRotateListener(
  1. void onPinchRotateLambda(
    1. GestureState,
    2. Point2D,
    3. Point2D,
    4. double,
    5. Angle,
    )
)

Abstract class for handling pinch rotate gestures.

Pinch rotate gesture occurs when two fingers are on the screen and at least one of them moves.

Implementation

factory PinchRotateListener(
  void Function(GestureState, Point2D, Point2D, double, Angle) onPinchRotateLambda,

) => PinchRotateListener$Lambdas(
  onPinchRotateLambda,

);