DecryptedMessageDto constructor

DecryptedMessageDto({
  1. required String id,
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? author,
  6. String? responsible,
  7. String? medicalLocationId,
  8. Set<CodeStubDto> tags = const {},
  9. Set<CodeStubDto> codes = const {},
  10. int? endOfLife,
  11. int? deletionDate,
  12. String? fromAddress,
  13. String? fromHealthcarePartyId,
  14. String? formId,
  15. int? status,
  16. String? recipientsType,
  17. Set<String> recipients = const {},
  18. Set<String> toAddresses = const {},
  19. int? received,
  20. int? sent,
  21. Map<String, String> metas = const {},
  22. Map<String, MessageReadStatusDto> readStatus = const {},
  23. String? transportGuid,
  24. String? remark,
  25. String? conversationGuid,
  26. String? subject,
  27. Set<String> invoiceIds = const {},
  28. String? parentId,
  29. String? externalRef,
  30. Set<String> unassignedResults = const {},
  31. Map<String, String> assignedResults = const {},
  32. Map<String, String> senderReferences = const {},
  33. Set<String> secretForeignKeys = const {},
  34. Map<String, Set<DelegationDto>> cryptedForeignKeys = const {},
  35. Map<String, Set<DelegationDto>> delegations = const {},
  36. Map<String, Set<DelegationDto>> encryptionKeys = const {},
  37. String? encryptedSelf,
})

Returns a new DecryptedMessageDto instance.

Implementation

DecryptedMessageDto({
  required this.id,
  this.rev,
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.medicalLocationId,
  this.tags = const {},
  this.codes = const {},
  this.endOfLife,
  this.deletionDate,
  this.fromAddress,
  this.fromHealthcarePartyId,
  this.formId,
  this.status,
  this.recipientsType,
  this.recipients = const {},
  this.toAddresses = const {},
  this.received,
  this.sent,
  this.metas = const {},
  this.readStatus = const {},
  this.transportGuid,
  this.remark,
  this.conversationGuid,
  this.subject,
  this.invoiceIds = const {},
  this.parentId,
  this.externalRef,
  this.unassignedResults = const {},
  this.assignedResults = const {},
  this.senderReferences = const {},
  this.secretForeignKeys = const {},
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf,
});