AtomFeed.fromXml constructor
AtomFeed.fromXml(
- XmlElement feedElement
Factory method to create an AtomFeed object from an XmlElement
.
The feedElement
is an XML element containing the Atom feed information.
Returns the parsed AtomFeed object.
Implementation
factory AtomFeed.fromXml(XmlElement feedElement) {
return AtomFeed._fromXml(feedElement);
}