Message constructor

Message({
  1. String? id,
  2. String? subject,
  3. String? bodyPreview,
  4. bool? hasAttachments,
  5. String? importance,
  6. DateTime? receivedDateTime,
  7. DateTime? sentDateTime,
  8. Recipient? sender,
  9. Recipient? from,
  10. List<Recipient>? toRecipients,
  11. List<Recipient>? ccRecipients,
  12. List<Recipient>? bccRecipients,
  13. ItemBody? body,
  14. bool? isRead,
  15. FollowupFlag? followupFlag,
})

Implementation

Message({
  this.id,
  this.subject,
  this.bodyPreview,
  this.hasAttachments,
  this.importance,
  this.receivedDateTime,
  this.sentDateTime,
  this.sender,
  this.from,
  this.toRecipients,
  this.ccRecipients,
  this.bccRecipients,
  this.body,
  this.isRead,
  this.followupFlag,
});