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