resolveAbsolute method

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

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);