Rss1Item constructor

const Rss1Item({
  1. String? title,
  2. String? description,
  3. String? link,
  4. DublinCore? dc,
  5. RssContent? content,
})

Implementation

const Rss1Item({
  this.title,
  this.description,
  this.link,
  this.dc,
  this.content,
});