Skip to content

Instantly share code, notes, and snippets.

@salihgueler
Created January 6, 2019 19:43
Show Gist options
  • Save salihgueler/19fa93f04c024bbf572297724d6bf905 to your computer and use it in GitHub Desktop.
Save salihgueler/19fa93f04c024bbf572297724d6bf905 to your computer and use it in GitHub Desktop.
Saturday
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