TF-2930 Fix inline attachment lost in draft emails
This commit is contained in:
@@ -5,11 +5,13 @@ import 'package:model/email/attachment.dart';
|
||||
class EmailLoaded with EquatableMixin {
|
||||
final String htmlContent;
|
||||
final List<Attachment> attachments;
|
||||
final List<Attachment> inlineImages;
|
||||
final Email? emailCurrent;
|
||||
|
||||
EmailLoaded({
|
||||
required this.htmlContent,
|
||||
required this.attachments,
|
||||
required this.inlineImages,
|
||||
this.emailCurrent,
|
||||
});
|
||||
|
||||
@@ -17,6 +19,7 @@ class EmailLoaded with EquatableMixin {
|
||||
List<Object?> get props => [
|
||||
htmlContent,
|
||||
attachments,
|
||||
inlineImages,
|
||||
emailCurrent
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user