OverscrollPop constructor

const OverscrollPop({
  1. Key? key,
  2. required Widget child,
  3. DragToPopDirection? dragToPopDirection,
  4. ScrollToPopOption scrollToPopOption = ScrollToPopOption.start,
  5. bool enable = true,
})

Implementation

const OverscrollPop({
  Key? key,
  required this.child,
  this.dragToPopDirection,
  this.scrollToPopOption = ScrollToPopOption.start,
  this.enable = true,
}) : super(key: key);