BlazeMessageData constructor

BlazeMessageData(
  1. String conversationId,
  2. String userId,
  3. String messageId,
  4. String? category,
  5. String data,
  6. MessageStatus status,
  7. DateTime createdAt,
  8. DateTime updatedAt,
  9. String source,
  10. String? representativeId,
  11. String? quoteMessageId,
  12. String sessionId,
  13. int expireIn,
)

Implementation

BlazeMessageData(
  this.conversationId,
  this.userId,
  this.messageId,
  this.category,
  this.data,
  this.status,
  this.createdAt,
  this.updatedAt,
  this.source,
  this.representativeId,
  this.quoteMessageId,
  this.sessionId,
  this.expireIn,
);