SelectionGestureInterceptor constructor

SelectionGestureInterceptor({
  1. required String key,
  2. bool canTap(
    1. TapDownDetails details
    )?,
  3. bool canDoubleTap(
    1. TapDownDetails details
    )?,
  4. bool canPanStart(
    1. DragStartDetails details
    )?,
  5. bool canPanUpdate(
    1. DragUpdateDetails details
    )?,
  6. bool canPanEnd(
    1. DragEndDetails details
    )?,
})

Implementation

SelectionGestureInterceptor({
  required this.key,
  this.canTap,
  this.canDoubleTap,
  this.canPanStart,
  this.canPanUpdate,
  this.canPanEnd,
});