NavigationInterceptOptions constructor
NavigationInterceptOptions({
- NavigationInterceptHandler? handler,
- NavigationFocusReset? focusReset,
- NavigationScrollBehavior? scroll,
Implementation
factory NavigationInterceptOptions(
{NavigationInterceptHandler? handler,
NavigationFocusReset? focusReset,
NavigationScrollBehavior? scroll}) =>
NavigationInterceptOptions._(
handler: handler ?? undefined,
focusReset: focusReset?.value ?? undefined,
scroll: scroll?.value ?? undefined);