Created
October 4, 2021 16:08
-
-
Save brasizza/6b6df85c4a6dc82d05c2bca0e2e67269 to your computer and use it in GitHub Desktop.
This file contains 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 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