resolve method

RouteQuery resolve(
  1. String path
)
inherited

Passing the current path to path returns the corresponding RouteQuery.

pathに現在のパスを渡すとそれに応じたRouteQueryを返します。

Implementation

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