Skip to content

Instantly share code, notes, and snippets.

@brasizza
Created October 4, 2021 16:08
Show Gist options
  • Save brasizza/6b6df85c4a6dc82d05c2bca0e2e67269 to your computer and use it in GitHub Desktop.
Save brasizza/6b6df85c4a6dc82d05c2bca0e2e67269 to your computer and use it in GitHub Desktop.
class TodoModel {
final int id;
final String title;
final String? descritpion;
final String? tag;
final bool done;
TodoModel({
required this.id,
required this.title,
this.descritpion,
this.tag,
this.done = false,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment