SlidableScrollingBehavior constructor

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

Implementation

const SlidableScrollingBehavior({
  Key? key,
  required this.controller,
  this.closeOnScroll = true,
  required this.child,
}) : super(key: key);