AppcastItem constructor

AppcastItem({
  1. String? title,
  2. String? dateString,
  3. String? itemDescription,
  4. String? releaseNotesURL,
  5. String? minimumSystemVersion,
  6. String? maximumSystemVersion,
  7. String? fileURL,
  8. int? contentLength,
  9. String? versionString,
  10. String? osString,
  11. String? displayVersionString,
  12. String? infoURL,
  13. List<String>? tags,
})

Implementation

AppcastItem({
  this.title,
  this.dateString,
  this.itemDescription,
  this.releaseNotesURL,
  this.minimumSystemVersion,
  this.maximumSystemVersion,
  this.fileURL,
  this.contentLength,
  this.versionString,
  this.osString,
  this.displayVersionString,
  this.infoURL,
  this.tags,
});