InterceptNavigationScope constructor

const InterceptNavigationScope({
  1. Key? key,
  2. bool canPop = true,
  3. required NavigateInterceptor? onIntercept,
  4. required Widget child,
})

Implementation

const InterceptNavigationScope({
  super.key,
  this.canPop = true,
  required this.onIntercept,
  required this.child,
});