CustomPanGestureRecognizer constructor

CustomPanGestureRecognizer({
  1. required Function onPanDown,
  2. required Function onPanUpdate,
  3. required Function onPanEnd,
})

Implementation

CustomPanGestureRecognizer({
  required this.onPanDown,
  required this.onPanUpdate,
  required this.onPanEnd,
});