mkcol method
Creates a collection at path
.
See:
- http://www.webdav.org/specs/rfc2518.html#METHOD_MKCOL for more information.
- mkcol_Request for the request sent by this method.
Implementation
Future<http.StreamedResponse> mkcol(PathUri path) {
final request = mkcol_Request(path);
return csrfClient.send(request);
}