parse static method
Implementation
static RssPodcastAlternateEnclosureIntegrity? parse(XmlElement? element) {
if (element == null) return null;
return RssPodcastAlternateEnclosureIntegrity(
type: element.getAttribute('type'),
value: element.getAttribute('value'),
);
}