Skip to content

Instantly share code, notes, and snippets.

@Dalmangyi
Created September 11, 2019 05:53
Show Gist options
  • Save Dalmangyi/ac758314007d20e1c060a9695a708bb9 to your computer and use it in GitHub Desktop.
Save Dalmangyi/ac758314007d20e1c060a9695a708bb9 to your computer and use it in GitHub Desktop.
Dart_model_json
class Dog {
final int id;
final String name;
Dog({this.id, this.name});
}
class Dog {
final int id;
final String name;
Dog({this.id, this.name});
factory Dog.fromJson(Map<String, dynamic> json) => Dog(
id: json["id"],
name: json["name"]
);
Map<String, dynamic> toJson() => {
"id":id,
"name":name,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment