PathController.fromFullPath constructor

PathController.fromFullPath(
  1. String calledPath
)

Implementation

PathController.fromFullPath(this.calledPath)
    : notProcessedValues = List.from(Uri.parse(calledPath).pathSegments) {
  next = notProcessedValues.isEmpty ? "*root" : notProcessedValues.first;
  queryParameters = Uri.parse(calledPath).queryParameters;
}