moveDir abstract method

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

Move source directory identified by from to new location to recursively.

see: https://datatracker.ietf.org/doc/html/rfc4918#section-9.9 and https://datatracker.ietf.org/doc/html/rfc4918#section-9.9.5

Implementation

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