Created
October 4, 2021 18:05
-
-
Save brasizza/de3d3a9daf71280ffcc75b4bf46cc8c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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