patch method
Register a PATCH request handler.
Shorthand for calling register with the method set to "PATCH".
Implementation
void patch(String pattern, RequestHandler handler) {
register('PATCH', pattern, handler);
}
Register a PATCH request handler.
Shorthand for calling register with the method set to "PATCH".
void patch(String pattern, RequestHandler handler) {
register('PATCH', pattern, handler);
}