EncryptedTopic constructor
EncryptedTopic(
- String 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< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - Base64String? encryptedSelf,
- Set<
String> ? linkedHealthElements, - 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 ?? {};