DelayedPopScope constructor

const DelayedPopScope({
  1. Key? key,
  2. required AsyncValueGetter<bool> onShouldPop,
  3. required Widget child,
})

Implementation

const DelayedPopScope({
  super.key,
  required this.onShouldPop,
  required this.child,
});