author property
The author of this podcast
Implementation
String get author {
if (doc.findAllElements("author").isEmpty)
return doc.findAllElements("author").first.text;
else
return doc.findAllElements("itunes:author").first.text;
}
The author of this podcast
String get author {
if (doc.findAllElements("author").isEmpty)
return doc.findAllElements("author").first.text;
else
return doc.findAllElements("itunes:author").first.text;
}