LockRequestParam.renew constructor

const LockRequestParam.renew({
  1. required IfOr condition,
  2. DavTimeout? timeout,
  3. bool? recursive,
})

Implementation

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