navigateToPath method

Future<void> navigateToPath(
  1. String path, {
  2. bool includePrefixMatches = false,
  3. OnNavigationFailure? onFailure,
})

Implementation

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