Created
March 30, 2019 16:49
-
-
Save maffan91/c021a70fd6acb9e81c59ca76509ad617 to your computer and use it in GitHub Desktop.
An example of movie model
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 { | |
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