author property

String author

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;
}