move method
Moves the resource from sourcePath
to destinationPath
.
If overwrite
is set any existing resource will be replaced.
See:
- http://www.webdav.org/specs/rfc2518.html#METHOD_MOVE for more information.
- move_Request for the request sent by this method.
Implementation
Future<http.StreamedResponse> move(
PathUri sourcePath,
PathUri destinationPath, {
bool overwrite = false,
}) {
final request = move_Request(
sourcePath,
destinationPath,
overwrite: overwrite,
);
return csrfClient.send(request);
}