This commit is contained in:
lama137
2023-09-28 09:02:52 +02:00
committed by Joe Küng
parent 9b3634e1cd
commit 1ff2e9da0a
7 changed files with 19 additions and 17 deletions

View File

@@ -8,4 +8,7 @@ class Note extends BaseEntity {
static String creationDate = BaseEntity.getCreationDate;
static String lastModificationDate = BaseEntity.getLastEditDate;
static String description = '';
Map<String, dynamic> toMap() {
return {'id': id, 'title': title, 'desc': description,'CreationDate': creationDate, 'lastM': lastModificationDate };
}
}