Message constructor
Message({
- String? id,
- String? subject,
- String? bodyPreview,
- bool? hasAttachments,
- String? importance,
- DateTime? receivedDateTime,
- DateTime? sentDateTime,
- Recipient? sender,
- Recipient? from,
- List<
Recipient> ? toRecipients, - List<
Recipient> ? ccRecipients, - List<
Recipient> ? bccRecipients, - ItemBody? body,
- bool? isRead,
- 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,
});