TF-1857 Add headerCalendarEvent to email cached

(cherry picked from commit 6d884bb6db5365c6308404fb5d98fd356be4109e)
This commit is contained in:
dab246
2023-07-19 17:08:01 +07:00
committed by Dat Vu
parent c37ab20901
commit 7df56f3f66
6 changed files with 42 additions and 18 deletions
@@ -51,6 +51,9 @@ class EmailCache extends HiveObject with EquatableMixin {
@HiveField(13)
Map<String, bool>? mailboxIds;
@HiveField(14)
Map<String, String?>? headerCalendarEvent;
EmailCache(
this.id,
{
@@ -67,6 +70,7 @@ class EmailCache extends HiveObject with EquatableMixin {
this.bcc,
this.replyTo,
this.mailboxIds,
this.headerCalendarEvent,
}
);
@@ -86,5 +90,6 @@ class EmailCache extends HiveObject with EquatableMixin {
preview,
hasAttachment,
mailboxIds,
headerCalendarEvent,
];
}