Skip to content

Instantly share code, notes, and snippets.

@hjJunior
Created December 10, 2018 12:41
Show Gist options
  • Save hjJunior/51f68b041396728d6061e5da45d26bf1 to your computer and use it in GitHub Desktop.
Save hjJunior/51f68b041396728d6061e5da45d26bf1 to your computer and use it in GitHub Desktop.
Beer model
class Beer {
final int id;
final String name;
final String tagline;
final String description;
final String image_url;
Beer.fromJSON(Map<String, dynamic> jsonMap) :
id = jsonMap['id'],
name = jsonMap['name'],
tagline = jsonMap['tagline'],
description = jsonMap['description'],
image_url = jsonMap['image_url'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment