parse static method
Implementation
static RssPodcastIndexLicense? parse(XmlElement? element) {
if (element == null) return null;
return RssPodcastIndexLicense(
url: element.getAttribute('url'),
license: element.innerText.toLowerCase(),
);
}