PathController.fromHttpRequest constructor
PathController.fromHttpRequest(
- HttpRequest request
Implementation
PathController.fromHttpRequest(HttpRequest request)
: notProcessedValues = List.from(request.uri.pathSegments),
calledPath = request.uri.path,
queryParameters = request.uri.queryParameters {
next = notProcessedValues.isEmpty ? "*root" : notProcessedValues.first;
}