Post constructor

Post({
  1. String? id,
  2. Recipient? sender,
  3. List<Recipient>? recipients,
  4. String? subject,
  5. ItemBody? body,
  6. DateTime? createdDateTime,
  7. DateTime? lastModifiedDateTime,
  8. List<String>? categories,
  9. List<String>? changeKey,
  10. bool? hasAttachments,
  11. String? importance,
  12. String? conversationId,
  13. String? conversationThreadId,
})

Implementation

Post({
  this.id,
  this.sender,
  this.recipients,
  this.subject,
  this.body,
  this.createdDateTime,
  this.lastModifiedDateTime,
  this.categories,
  this.changeKey,
  this.hasAttachments,
  this.importance,
  this.conversationId,
  this.conversationThreadId,
});