ClassificationTemplateDto constructor

ClassificationTemplateDto({
  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? parentId,
  13. required String label,
  14. Set<String> secretForeignKeys = const {},
  15. Map<String, Set<DelegationDto>> cryptedForeignKeys = const {},
  16. Map<String, Set<DelegationDto>> delegations = const {},
  17. Map<String, Set<DelegationDto>> encryptionKeys = const {},
  18. String? encryptedSelf,
})

Returns a new ClassificationTemplateDto instance.

Implementation

ClassificationTemplateDto({
  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.parentId,
  required this.label,
  this.secretForeignKeys = const {},
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf,
});