CustomSlidableScrollingBehavior constructor

const CustomSlidableScrollingBehavior({
  1. Key? key,
  2. required CustomSlidableController controller,
  3. bool closeOnScroll = true,
  4. required Widget child,
})

Implementation

const CustomSlidableScrollingBehavior({
  super.key,
  required this.controller,
  this.closeOnScroll = true,
  required this.child,
});