copyDir abstract method

Future<WebDavStdRequest<CopyRequestParam>> copyDir({
  1. required Uri to,
  2. bool? overwrite,
  3. IfOr? condition,
})

Creates a duplicate of the source directory "to" recursively identified by from.

see: https://datatracker.ietf.org/doc/html/rfc4918#section-9.8 and https://datatracker.ietf.org/doc/html/rfc4918#section-9.8.8

Implementation

Future<WebDavStdRequest<CopyRequestParam>> copyDir(
    {required Uri to, bool? overwrite, IfOr? condition});