Movie constructor

Movie({
  1. String id = "",
  2. int price = 0,
  3. required String photoUrl,
  4. required String name,
  5. required String description,
  6. double rating = 0.0,
  7. int duration = 0,
})

Implementation

Movie({
  this.id = "",
  this.price = 0,
  required this.photoUrl,
  required this.name,
  required this.description,
  this.rating = 0.0,
  this.duration = 0,
});