Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created May 28, 2019 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/b6b6634bff91a18d65dab3a1ad563f39 to your computer and use it in GitHub Desktop.
Save MarcinusX/b6b6634bff91a18d65dab3a1ad563f39 to your computer and use it in GitHub Desktop.
final List<Event> events = [
Event('steve-johnson.jpeg', 'Shenzhen GLOBAL DESIGN AWARD 2018', '4.20-30'),
Event('efe-kurnaz.jpg', 'Shenzhen GLOBAL DESIGN AWARD 2018', '4.20-30'),
Event('rodion-kutsaev.jpeg', 'Dawan District Guangdong Hong Kong', '4.28-31'),
];
class Event {
final String assetName;
final String title;
final String date;
Event(this.assetName, this.title, this.date);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment