MessageDetails constructor

MessageDetails({
  1. required int id,
  2. required String from,
  3. required String subject,
  4. required String date,
  5. required List<Attachment> attachments,
  6. required String body,
  7. required String textBody,
  8. required String htmlBody,
})

Implementation

MessageDetails({
  required this.id,
  required this.from,
  required this.subject,
  required this.date,
  required this.attachments,
  required this.body,
  required this.textBody,
  required this.htmlBody,
});