PositionedTapDetector2 constructor

PositionedTapDetector2({
  1. Key? key,
  2. Widget? child,
  3. TapPositionCallback? onTap,
  4. TapPositionCallback? onDoubleTap,
  5. TapPositionCallback? onLongPress,
  6. Duration doubleTapDelay = _defaultDelay,
  7. HitTestBehavior? behavior,
  8. PositionedTapController? controller,
})

Implementation

PositionedTapDetector2({
  Key? key,
  this.child,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
  this.doubleTapDelay = _defaultDelay,
  this.behavior,
  this.controller,
}) : super(key: key);