We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6ee26 commit 2e008dcCopy full SHA for 2e008dc
lib/entities/note.dart
@@ -11,8 +11,6 @@ class Note {
11
final int createdAt;
12
final int? deletedAt;
13
14
- final bool? showDate;
15
-
16
User? user;
17
List<String>? tags;
18
@@ -38,7 +36,6 @@ class Note {
38
36
required this.isMarkdown,
39
37
required this.createdAt,
40
this.deletedAt,
41
- this.showDate,
42
this.user,
43
this.tags,
44
});
@@ -53,7 +50,6 @@ class Note {
53
50
isMarkdown: json['isMarkdown'],
54
51
createdAt: json['createdAt'],
55
52
deletedAt: json['deletedAt'],
56
- showDate: json['showDate'],
57
user: json['user'] != null ? User.fromJson(json['user']) : null,
58
tags: json['tags'] == '' || json['tags'] == null ? [] : json['tags'].split(' '),
59
);
0 commit comments