BackCatch constructor

const BackCatch({
  1. required Widget child,
  2. bool preventBack = true,
  3. Function? onBack,
  4. Key? key,
})

Implementation

const BackCatch({
  required this.child,
  this.preventBack = true,
  this.onBack,

  super.key});