Episode constructor

Episode({
  1. required String guid,
  2. required String title,
  3. required String description,
  4. String? link = '',
  5. DateTime? publicationDate,
  6. String? author = '',
  7. Duration? duration,
  8. String? contentUrl,
  9. String? imageUrl,
  10. int? season,
  11. int? episode,
  12. String? content,
  13. Chapters? chapters,
  14. List<TranscriptUrl> transcripts = const <TranscriptUrl>[],
  15. List<Person> persons = const <Person>[],
  16. List<Value> value = const <Value>[],
})

Implementation

Episode({
  required this.guid,
  required this.title,
  required this.description,
  this.link = '',
  this.publicationDate,
  this.author = '',
  this.duration,
  this.contentUrl,
  this.imageUrl,
  this.season,
  this.episode,
  this.content,
  this.chapters,
  this.transcripts = const <TranscriptUrl>[],
  this.persons = const <Person>[],
  this.value = const <Value>[],
});