VideoModel constructor
VideoModel({
- required String title,
- required String imageUrl,
- required String country,
- required String instructor,
- required String noOfEpisodes,
- required String price,
- required String totalHours,
- required String noOfModules,
- required String videoType,
- required int liveDate,
- required List<
String> genres, - required List<
String> youWillLearn, - 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,
});