TF-3515 Add save email as template feature

This commit is contained in:
DatDang
2025-02-25 16:10:20 +07:00
committed by Dat H. Pham
parent ef1f979c4b
commit 7f09f9ceb4
40 changed files with 1079 additions and 54 deletions
@@ -25,6 +25,7 @@ class ComposerCache with EquatableMixin {
final int? draftHash;
final EmailActionType? actionType;
final EmailId? draftEmailId;
final EmailId? templateEmailId;
ComposerCache({
this.email,
@@ -36,6 +37,7 @@ class ComposerCache with EquatableMixin {
this.draftHash,
this.actionType,
this.draftEmailId,
this.templateEmailId,
});
factory ComposerCache.fromJson(Map<String, dynamic> json) => _$ComposerCacheFromJson(json);
@@ -53,5 +55,6 @@ class ComposerCache with EquatableMixin {
draftHash,
actionType,
draftEmailId,
templateEmailId,
];
}