delete method
Register a DELETE request handler.
Shorthand for calling register with the method set to "DELETE".
Implementation
void delete(String path, RequestHandler handler) {
register("DELETE", path, handler);
}
Register a DELETE request handler.
Shorthand for calling register with the method set to "DELETE".
void delete(String path, RequestHandler handler) {
register("DELETE", path, handler);
}