any method
MethodPrepare
any(
- Handler handler, [
- List<
Middleware> ? pipeline, - List<
String> ? acceptedContentType
Implementation
MethodPrepare any(Handler handler,
[List<Middleware>? pipeline, List<String>? acceptedContentType]) {
var i = _path.methods['ANY'] = PathMethod(
[...parentPipeline, ...?pipeline],
handler: handler,
acceptedContentType: acceptedContentType ?? [],
);
return MethodPrepare(i);
}