resolveAbsolute method

Iterable<RoutingResult<T>> resolveAbsolute(
  1. String path, {
  2. String method = 'GET',
  3. bool strip = true,
})

Returns the result of resolve with path passed as both absolute and relative.

Implementation

Iterable<RoutingResult<T>> resolveAbsolute(String path,
        {String method = 'GET', bool strip = true}) =>
    resolveAll(path, path, method: method, strip: strip);