convertValue method

  1. @override
SupportedLock convertValue(
  1. XmlElement node
)

Implementation

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