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