delete method
void
delete(
- String path, {
- RequestCallback? handler,
- Controller? controller,
- String? method,
- List<
MiddlewareFunc> middleware = const [],
Implementation
void delete(String path, {RequestCallback? handler, Controller? controller, String? method, List<MiddlewareFunc> middleware = const []}) =>
_addBinding(path, HttpVerb.Delete, handler: handler, controller: controller, method: method, middleware: middleware);