DragToPop constructor

const DragToPop({
  1. Key? key,
  2. required Widget child,
  3. bool enable = true,
})

Implementation

const DragToPop({
  Key? key,
  required this.child,
  this.enable = true,
}) : super(key: key);