PapercupsMessage constructor

PapercupsMessage({
  1. String? accountId,
  2. String? body,
  3. String? conversationId,
  4. DateTime? createdAt,
  5. String? customerId,
  6. String? id,
  7. DateTime? seenAt,
  8. DateTime? sentAt,
  9. User? user,
  10. int? userId,
  11. PapercupsCustomer? customer,
  12. List<String>? fileIds,
  13. List<PapercupsAttachment>? attachments,
})

Implementation

PapercupsMessage({
  this.accountId,
  this.body,
  this.conversationId,
  this.createdAt,
  this.customerId,
  this.id,
  this.seenAt,
  this.sentAt,
  this.user,
  this.userId,
  this.customer,
  this.fileIds,
  this.attachments,
});