LockRequestParam constructor

const LockRequestParam({
  1. required LockInfo<ToXmlCapable> lockInfo,
  2. DavTimeout? timeout,
  3. bool? recursive,
  4. IfOr? condition,
})

Implementation

const LockRequestParam(
    {required LockInfo this.lockInfo,
    this.timeout,
    bool? recursive,
    this.condition})
    : depth =
          recursive != null ? (recursive ? Depth.all : Depth.resource) : null;