added id to task

This commit is contained in:
2026-06-09 11:02:58 +02:00
parent 3b130fb59d
commit 0b3355b4bc
+2
View File
@@ -1,6 +1,7 @@
import 'location.dart';
class Task {
final String id;
final String title;
final String description;
final DateTime? start;
@@ -13,6 +14,7 @@ class Task {
final String url;
Task({
required this.id,
required this.title,
this.description = '',
this.start,