InboxForwarderEventProjection constructor

InboxForwarderEventProjection({
  1. String? message,
  2. String? id,
  3. InboxForwarderEventProjectionStatusEnum? status,
  4. String? userId,
  5. String? emailId,
  6. String? inboxId,
  7. required DateTime createdAt,
  8. String? forwarderId,
})

Returns a new InboxForwarderEventProjection instance.

Implementation

InboxForwarderEventProjection({
  this.message,
  this.id,
  this.status,
  this.userId,
  this.emailId,
  this.inboxId,
  required this.createdAt,
  this.forwarderId,
});