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