resolve method

RouteQuery resolve(
  1. String path
)

Passing the current path to path returns the corresponding RouteQuery. pathに現在のパスを渡すとそれに応じたRouteQueryを返します。

Implementation

RouteQuery resolve(String path) {
  return _UnknownRouteQuery(builder: this, sourcePath: path);
}