options method
Gets the WebDAV capabilities of the server.
See:
- options_Request for the request sent by this method.
Implementation
Future<WebDavOptions> options() async {
final request = options_Request();
final response = await csrfClient.send(request);
return parseWebDavOptions(response.headers);
}