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