Skip to content

Instantly share code, notes, and snippets.

@maffan91
Created March 30, 2019 16:49
Show Gist options
  • Save maffan91/c021a70fd6acb9e81c59ca76509ad617 to your computer and use it in GitHub Desktop.
Save maffan91/c021a70fd6acb9e81c59ca76509ad617 to your computer and use it in GitHub Desktop.
An example of movie model
class Movie {
final String title;
final String genre;
final String year;
final String imageUrl;
Movie({this.genre, this.title, this.year, this.imageUrl});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment