SlidableGestureDetector constructor

const SlidableGestureDetector({
  1. Key? key,
  2. bool enabled = true,
  3. required SlidableController controller,
  4. required Axis direction,
  5. required Widget child,
  6. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
})

Implementation

const SlidableGestureDetector({
  Key? key,
  this.enabled = true,
  required this.controller,
  required this.direction,
  required this.child,
  this.dragStartBehavior = DragStartBehavior.start,
}) : super(key: key);