DragAndDropGestureDetector constructor

const DragAndDropGestureDetector({
  1. Key? key,
  2. required MapModel mapModel,
  3. int longPressDuration = 350,
  4. int maxDistance = 20,
  5. TapEventListener tapEventListener = TapEventListener.longTap,
})

Implementation

const DragAndDropGestureDetector({
  super.key,
  required this.mapModel,
  this.longPressDuration = 350,
  this.maxDistance = 20,
  this.tapEventListener = TapEventListener.longTap,
});