head method
Implementation
void head(
String path,
RequestHandler handler, {
FilterConfig? filterConfig,
}) =>
routes.add(
Route(
path: path,
method: HttpMethod.head,
handler: handler,
filterConfig: filterConfig,
),
);