navigateNamedTo method

  1. @Deprecated('Use navigateToPath instead')
Future<void> navigateNamedTo(
  1. String path, {
  2. bool includePrefixMatches = false,
  3. OnNavigationFailure? onFailure,
})

Implementation

@Deprecated('Use navigateToPath instead')
Future<void> navigateNamedTo(String path, {bool includePrefixMatches = false, OnNavigationFailure? onFailure}) =>
    RouterScope.of(this).controller.navigatePath(
          path,
          includePrefixMatches: includePrefixMatches,
          onFailure: onFailure,
        );