CustomSlidableGestureDetector constructor

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

Implementation

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