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