TF-3449 Update Mark as Important state when open draft email and reload page

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-02-20 08:30:52 +07:00
committed by Dat H. Pham
parent d2ee165f49
commit 94b6814ab1
6 changed files with 18 additions and 2 deletions
@@ -10,11 +10,13 @@ class ComposerCache with EquatableMixin {
final Email? email;
final bool? hasRequestReadReceipt;
final bool? isMarkAsImportant;
final ScreenDisplayMode displayMode;
ComposerCache({
this.email,
this.hasRequestReadReceipt,
this.isMarkAsImportant,
this.displayMode = ScreenDisplayMode.normal
});
@@ -26,6 +28,7 @@ class ComposerCache with EquatableMixin {
List<Object?> get props => [
email,
hasRequestReadReceipt,
isMarkAsImportant,
displayMode
];
}