InboxReplierEventProjection constructor

InboxReplierEventProjection({
  1. String? message,
  2. String? id,
  3. InboxReplierEventProjectionStatusEnum? status,
  4. List<String>? recipients = const [],
  5. String? userId,
  6. String? emailId,
  7. String? inboxId,
  8. required DateTime createdAt,
  9. String? sentId,
  10. String? replierId,
})

Returns a new InboxReplierEventProjection instance.

Implementation

InboxReplierEventProjection({
  this.message,
  this.id,
  this.status,
  this.recipients = const [],
  this.userId,
  this.emailId,
  this.inboxId,
  required this.createdAt,
  this.sentId,
  this.replierId,
});