notFound static method

FunctionalRouteDefinition notFound(
  1. RequestHandler handler, [
  2. HTTPMethod method = HTTPMethod.ALL
])

Implementation

static FunctionalRouteDefinition notFound(RequestHandler handler,
        [HTTPMethod method = HTTPMethod.ALL]) =>
    Route.route(method, '/*', handler);