EditorTextSelectionGestureDetector constructor

const EditorTextSelectionGestureDetector({
  1. required Widget child,
  2. GestureTapDownCallback? onTapDown,
  3. GestureForcePressStartCallback? onForcePressStart,
  4. GestureForcePressEndCallback? onForcePressEnd,
  5. GestureTapUpCallback? onSingleTapUp,
  6. GestureTapCancelCallback? onSingleTapCancel,
  7. GestureLongPressStartCallback? onSingleLongTapStart,
  8. GestureLongPressMoveUpdateCallback? onSingleLongTapMoveUpdate,
  9. GestureLongPressEndCallback? onSingleLongTapEnd,
  10. GestureTapDownCallback? onDoubleTapDown,
  11. GestureDragStartCallback? onDragSelectionStart,
  12. dynamic onDragSelectionUpdate,
  13. GestureDragEndCallback? onDragSelectionEnd,
  14. HitTestBehavior? behavior,
  15. Key? key,
})

Implementation

const EditorTextSelectionGestureDetector({
  required this.child,
  this.onTapDown,
  this.onForcePressStart,
  this.onForcePressEnd,
  this.onSingleTapUp,
  this.onSingleTapCancel,
  this.onSingleLongTapStart,
  this.onSingleLongTapMoveUpdate,
  this.onSingleLongTapEnd,
  this.onDoubleTapDown,
  this.onDragSelectionStart,
  this.onDragSelectionUpdate,
  this.onDragSelectionEnd,
  this.behavior,
  Key? key,
}) : super(key: key);