EncryptedTopic constructor

EncryptedTopic(
  1. String id, {
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? healthElementId,
  6. String? contactId,
  7. String? description,
  8. Set<CodeStub>? codes,
  9. Set<CodeStub>? tags,
  10. String? author,
  11. String? responsible,
  12. String? medicalLocationId,
  13. int? endOfLife,
  14. int? deletionDate,
  15. Map<String, TopicRole>? activeParticipants,
  16. SecurityMetadata? securityMetadata,
  17. Set<String>? secretForeignKeys,
  18. Map<String, Set<Delegation>>? cryptedForeignKeys,
  19. Map<String, Set<Delegation>>? delegations,
  20. Map<String, Set<Delegation>>? encryptionKeys,
  21. Base64String? encryptedSelf,
  22. Set<String>? linkedHealthElements,
  23. Set<String>? linkedServices,
})

Implementation

EncryptedTopic(
	this.id,
	{
		String? rev,
		int? created,
		int? modified,
		String? healthElementId,
		String? contactId,
		String? description,
		Set<CodeStub>? codes,
		Set<CodeStub>? tags,
		String? author,
		String? responsible,
		String? medicalLocationId,
		int? endOfLife,
		int? deletionDate,
		Map<String, TopicRole>? activeParticipants,
		SecurityMetadata? securityMetadata,
		Set<String>? secretForeignKeys,
		Map<String, Set<Delegation>>? cryptedForeignKeys,
		Map<String, Set<Delegation>>? delegations,
		Map<String, Set<Delegation>>? encryptionKeys,
		Base64String? encryptedSelf,
		Set<String>? linkedHealthElements,
		Set<String>? linkedServices
	}) : rev = rev ?? null,
	created = created ?? null,
	modified = modified ?? null,
	healthElementId = healthElementId ?? null,
	contactId = contactId ?? null,
	description = description ?? null,
	codes = codes ?? {},
	tags = tags ?? {},
	author = author ?? null,
	responsible = responsible ?? null,
	medicalLocationId = medicalLocationId ?? null,
	endOfLife = endOfLife ?? null,
	deletionDate = deletionDate ?? null,
	activeParticipants = activeParticipants ?? {},
	securityMetadata = securityMetadata ?? null,
	secretForeignKeys = secretForeignKeys ?? {},
	cryptedForeignKeys = cryptedForeignKeys ?? {},
	delegations = delegations ?? {},
	encryptionKeys = encryptionKeys ?? {},
	encryptedSelf = encryptedSelf ?? null,
	linkedHealthElements = linkedHealthElements ?? {},
	linkedServices = linkedServices ?? {};