RssItunes constructor

const RssItunes({
  1. String? author,
  2. String? summary,
  3. bool? explicit,
  4. String? title,
  5. String? subtitle,
  6. RssItunesOwner? owner,
  7. List<String> keywords = const <String>[],
  8. RssItunesImage? image,
  9. List<RssItunesCategory?> categories = const <RssItunesCategory?>[],
  10. RssItunesType? type,
  11. String? newFeedUrl,
  12. bool? block,
  13. bool? complete,
})

Implementation

const RssItunes({
  this.author,
  this.summary,
  this.explicit,
  this.title,
  this.subtitle,
  this.owner,
  this.keywords = const <String>[],
  this.image,
  this.categories = const <RssItunesCategory?>[],
  this.type,
  this.newFeedUrl,
  this.block,
  this.complete,
});