options_Request method
Request
options_Request()
Request to get the WebDAV capabilities of the server.
See:
- options for a complete operation executing this request.
Implementation
http.Request options_Request() {
final request = http.Request('OPTIONS', _constructUri());
_addBaseHeaders(request);
return request;
}