This commit is contained in:
Andika Tanuwijaya
2025-07-02 00:39:36 +07:00
parent e37388a6c9
commit 578c7ae53a
20 changed files with 575 additions and 103 deletions

View File

@@ -0,0 +1,13 @@
class Task {
final int id;
final String title;
final String description;
final bool completed;
const Task({
required this.id,
required this.title,
required this.description,
required this.completed,
});
}