SingleDragDelayedGestureRecognizer constructor
SingleDragDelayedGestureRecognizer({})
Implementation
SingleDragDelayedGestureRecognizer({
required this.beginDuration,
required super.duration,
super.debugOwner,
super.supportedDevices,
super.postAcceptSlopTolerance,
}) {
assert(beginDuration < super.deadline!);
onLongPressDown = _onLongPressDown;
onLongPressStart = _onLongPressStart;
onLongPressMoveUpdate = _onLongPressMoveUpdate;
onLongPressEnd = _onLongPressEnd;
onLongPressCancel = _onLongPressCancel;
}