get method

PathResolver get(
  1. List<String> keys
)

Get PathResolver instance of the path.

Implementation

PathResolver get(List<String> keys) {
  List<String> newRoute = [...route];
  newRoute.addAll(keys);
  return PathResolver(route: newRoute, configFile: this);
}