SingleDragGestureRecognizer constructor

SingleDragGestureRecognizer({
  1. Object? debugOwner,
  2. Set<PointerDeviceKind>? supportedDevices,
})

Implementation

SingleDragGestureRecognizer({
  super.debugOwner,
  super.supportedDevices,
}) {
  onStart = _onStart;
  onUpdate = _onUpdate;
  onEnd = _onEnd;
  onCancel = _onLongPressCancel;
}