RoutingException.noSuchRoute constructor

RoutingException.noSuchRoute(
  1. String path
)

Occurs when the user attempts to navigate to a non-existent route.

Implementation

factory RoutingException.noSuchRoute(String path) => _RoutingExceptionImpl(
    "Tried to navigate to non-existent route: '$path'.");