Skip to content

Instantly share code, notes, and snippets.

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 guilhermecarvalhocarneiro/7288536f6534b8522fd377210cd2f107 to your computer and use it in GitHub Desktop.
Save guilhermecarvalhocarneiro/7288536f6534b8522fd377210cd2f107 to your computer and use it in GitHub Desktop.
PostModel.dart
class PostModel {
int id;
@observable
ObservableList<CommentModel> comments;
int commentsTotal;
List<RockItModel> rockIts;
int rockItsTotal;
List<PostPhotoModel> postPhotos;
UsuarioModel userData;
bool rockedIt;
String location;
String locationDescription;
int type;
String message;
String date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment