LockRequestParam constructor
const
LockRequestParam({
- required LockInfo<
ToXmlCapable> lockInfo, - DavTimeout? timeout,
- bool? recursive,
- IfOr? condition,
Implementation
const LockRequestParam(
{required LockInfo this.lockInfo,
this.timeout,
bool? recursive,
this.condition})
: depth =
recursive != null ? (recursive ? Depth.all : Depth.resource) : null;