TwoFingerPanListener constructor

TwoFingerPanListener(
  1. void onTwoFingerPanLambda(
    1. GestureState,
    2. Point2D,
    3. Point2D,
    4. double,
    )
)

Abstract class for handling two finger pan gestures.

Two finger pan gesture occurs when two fingers are on the screen and both of them are moving vertically.

Implementation

factory TwoFingerPanListener(
  void Function(GestureState, Point2D, Point2D, double) onTwoFingerPanLambda,

) => TwoFingerPanListener$Lambdas(
  onTwoFingerPanLambda,

);