convertValue method
Implementation
@override
SupportedLock convertValue(XmlElement node) => SupportedLock.from(node
.findElements(WebDavElementNames.lockentry, namespace: node.namespaceUri)
.map((e) => pieceParser.convert(e))
.whereNotNull()
.toList());