Movie constructor
Creates a new Movie instance.
Implementation
Movie({
required this.id,
required this.title,
required this.overview,
required this.posterUrl,
required this.backdropUrl,
required this.voteAverage,
required this.releaseDate,
required this.genreIds,
});