EncryptedContact constructor
EncryptedContact(
- String id, {
- String? rev,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - List<
Identifier> ? identifier, - int? endOfLife,
- int? deletionDate,
- String? groupId,
- int? openingDate,
- int? closingDate,
- String? descr,
- String? location,
- String? externalId,
- CodeStub? encounterType,
- EncryptedAddress? encounterLocation,
- Set<
EncryptedSubContact> ? subContacts, - Set<
EncryptedService> ? services, - Map<
ParticipantType, String> ? participants, - String? healthcarePartyId,
- String? modifiedContactId,
- Set<
String> ? secretForeignKeys, - Map<
String, Set< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - Base64String? encryptedSelf,
- SecurityMetadata? securityMetadata,
- List<
Annotation> ? notes,
Implementation
EncryptedContact(
this.id,
{
String? rev,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
List<Identifier>? identifier,
int? endOfLife,
int? deletionDate,
String? groupId,
int? openingDate,
int? closingDate,
String? descr,
String? location,
String? externalId,
CodeStub? encounterType,
EncryptedAddress? encounterLocation,
Set<EncryptedSubContact>? subContacts,
Set<EncryptedService>? services,
Map<ParticipantType, String>? participants,
String? healthcarePartyId,
String? modifiedContactId,
Set<String>? secretForeignKeys,
Map<String, Set<Delegation>>? cryptedForeignKeys,
Map<String, Set<Delegation>>? delegations,
Map<String, Set<Delegation>>? encryptionKeys,
Base64String? encryptedSelf,
SecurityMetadata? securityMetadata,
List<Annotation>? notes
}) : rev = rev ?? null,
created = created ?? null,
modified = modified ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
tags = tags ?? {},
codes = codes ?? {},
identifier = identifier ?? [],
endOfLife = endOfLife ?? null,
deletionDate = deletionDate ?? null,
groupId = groupId ?? null,
openingDate = openingDate ?? null,
closingDate = closingDate ?? null,
descr = descr ?? null,
location = location ?? null,
externalId = externalId ?? null,
encounterType = encounterType ?? null,
encounterLocation = encounterLocation ?? null,
subContacts = subContacts ?? {},
services = services ?? {},
participants = participants ?? {},
healthcarePartyId = healthcarePartyId ?? null,
modifiedContactId = modifiedContactId ?? null,
secretForeignKeys = secretForeignKeys ?? {},
cryptedForeignKeys = cryptedForeignKeys ?? {},
delegations = delegations ?? {},
encryptionKeys = encryptionKeys ?? {},
encryptedSelf = encryptedSelf ?? null,
securityMetadata = securityMetadata ?? null,
notes = notes ?? [];