Created
January 6, 2019 19:43
-
-
Save salihgueler/19fa93f04c024bbf572297724d6bf905 to your computer and use it in GitHub Desktop.
Saturday
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Movie { | |
String title; | |
String posterPath; | |
String backdropPath; | |
String originalTitle; | |
double voteAverage; | |
String overview; | |
String releaseDate; | |
Movie(this.title, | |
this.posterPath, | |
this.backdropPath, | |
this.originalTitle, | |
this.voteAverage, | |
this.overview, | |
this.releaseDate); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment