DecryptedFormDto constructor

DecryptedFormDto({
  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. int? openingDate,
  13. String? status,
  14. int? version,
  15. String? logicalUuid,
  16. String? descr,
  17. String? uniqueId,
  18. String? formTemplateId,
  19. String? contactId,
  20. String? healthElementId,
  21. String? planOfActionId,
  22. String? parent,
  23. Set<String> secretForeignKeys = const {},
  24. Map<String, Set<DelegationDto>> cryptedForeignKeys = const {},
  25. Map<String, Set<DelegationDto>> delegations = const {},
  26. Map<String, Set<DelegationDto>> encryptionKeys = const {},
  27. String? encryptedSelf,
})

Returns a new DecryptedFormDto instance.

Implementation

DecryptedFormDto({
  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.openingDate,
  this.status,
  this.version,
  this.logicalUuid,
  this.descr,
  this.uniqueId,
  this.formTemplateId,
  this.contactId,
  this.healthElementId,
  this.planOfActionId,
  this.parent,
  this.secretForeignKeys = const {},
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf,
});