Event constructor

Event({
  1. String? guid,
  2. String? title,
  3. String? subtitle,
  4. String? slug,
  5. String? link,
  6. String? description,
  7. String? originalLanguage,
  8. String? date,
  9. String? releaseDate,
  10. String? updatedAt,
  11. String? thumbUrl,
  12. String? posterUrl,
  13. String? timelineUrl,
  14. String? thumbnailsUrl,
  15. String? frontendLink,
  16. String? url,
  17. String? conferenceTitle,
  18. String? conferenceUrl,
  19. required List<String> persons,
  20. required List<String> tags,
  21. required int viewCount,
  22. required int length,
  23. required int duration,
  24. required bool promoted,
  25. required List<RelatedEvent> related,
})

Implementation

Event({
  this.guid,
  this.title,
  this.subtitle,
  this.slug,
  this.link,
  this.description,
  this.originalLanguage,
  this.date,
  this.releaseDate,
  this.updatedAt,
  this.thumbUrl,
  this.posterUrl,
  this.timelineUrl,
  this.thumbnailsUrl,
  this.frontendLink,
  this.url,
  this.conferenceTitle,
  this.conferenceUrl,
  required this.persons,
  required this.tags,
  required this.viewCount,
  required this.length,
  required this.duration,
  required this.promoted,
  required this.related,
});