VideoModel constructor

VideoModel({
  1. required String title,
  2. required String imageUrl,
  3. required String country,
  4. required String instructor,
  5. required String noOfEpisodes,
  6. required String price,
  7. required String totalHours,
  8. required String noOfModules,
  9. required String videoType,
  10. required int liveDate,
  11. required List<String> genres,
  12. required List<String> youWillLearn,
  13. required List<VideoDescriptionPoints> videDescriptionPoints,
})

Implementation

VideoModel({
  required this.title,
  required this.imageUrl,
  required this.country,
  required this.instructor,
  required this.noOfEpisodes,
  required this.price,
  required this.totalHours,
  required this.noOfModules,
  required this.videoType,
  required this.liveDate,
  required this.genres,
  required this.youWillLearn,
  required this.videDescriptionPoints,
});