OrganizationInboxProjection constructor

OrganizationInboxProjection({
  1. required String id,
  2. String? domainId,
  3. required DateTime createdAt,
  4. String? name,
  5. String? emailAddress,
  6. required bool favourite,
  7. List<String>? tags = const [],
  8. required bool teamAccess,
  9. OrganizationInboxProjectionInboxTypeEnum? inboxType,
  10. required bool readOnly,
  11. required bool virtualInbox,
})

Returns a new OrganizationInboxProjection instance.

Implementation

OrganizationInboxProjection({
  required this.id,
  this.domainId,
  required this.createdAt,
  this.name,
  this.emailAddress,
  required this.favourite,
  this.tags = const [],
  required this.teamAccess,
  this.inboxType,
  required this.readOnly,
  required this.virtualInbox,
});