PopAndAppTerminable constructor

const PopAndAppTerminable({
  1. Key? key,
  2. int intervalMilliSecToExitApp = 2000,
  3. FutureOr<bool> isExitOk()?,
  4. FutureOr<void> beforePopToExit()?,
  5. required Widget child,
})

Implementation

const PopAndAppTerminable({
  super.key,
  this.intervalMilliSecToExitApp = 2000,
  this.isExitOk,
  this.beforePopToExit,
  //this.onPopEventProvider,
  required this.child,
});