convert method
Converts input
and returns the result of the conversion.
Implementation
@override
Uri? convert(XmlElement input) {
final hrefNode = input.getElement(WebDavElementNames.href,
namespace: input.namespaceUri);
return hrefNode != null ? _hrefParser.convert(hrefNode) : null;
}