Skip to content

Instantly share code, notes, and snippets.

@brasizza
Created October 4, 2021 18:05
Show Gist options
  • Select an option

  • Save brasizza/de3d3a9daf71280ffcc75b4bf46cc8c4 to your computer and use it in GitHub Desktop.

Select an option

Save brasizza/de3d3a9daf71280ffcc75b4bf46cc8c4 to your computer and use it in GitHub Desktop.
class TaskModel {
final int id;
final String title;
final String? descritpion;
final String? tag;
final bool done;
TaskModel({
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