Skip to content

Instantly share code, notes, and snippets.

@alphamikle
Created January 31, 2021 14:01
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 alphamikle/1ced60915e26116446282cf2be0b7f7e to your computer and use it in GitHub Desktop.
Save alphamikle/1ced60915e26116446282cf2be0b7f7e to your computer and use it in GitHub Desktop.
Item data class
class Item {
const Item(
this.id,
this.createdAt,
this.profile,
this.imageUrl,
);
final int id;
final DateTime createdAt;
final String profile;
final String imageUrl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment