DecryptedForm constructor
DecryptedForm(
- String id, {
- int? version,
- String? rev,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - int? endOfLife,
- int? deletionDate,
- int? openingDate,
- String? status,
- String? logicalUuid,
- String? descr,
- String? uniqueId,
- String? formTemplateId,
- String? contactId,
- String? healthElementId,
- String? planOfActionId,
- String? parent,
- Set<
String> ? secretForeignKeys, - Map<
String, Set< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - Base64String? encryptedSelf,
- SecurityMetadata? securityMetadata,
Implementation
DecryptedForm(
this.id,
{
int? version,
String? rev,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
int? endOfLife,
int? deletionDate,
int? openingDate,
String? status,
String? logicalUuid,
String? descr,
String? uniqueId,
String? formTemplateId,
String? contactId,
String? healthElementId,
String? planOfActionId,
String? parent,
Set<String>? secretForeignKeys,
Map<String, Set<Delegation>>? cryptedForeignKeys,
Map<String, Set<Delegation>>? delegations,
Map<String, Set<Delegation>>? encryptionKeys,
Base64String? encryptedSelf,
SecurityMetadata? securityMetadata
}) : rev = rev ?? null,
created = created ?? null,
modified = modified ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
tags = tags ?? {},
codes = codes ?? {},
endOfLife = endOfLife ?? null,
deletionDate = deletionDate ?? null,
openingDate = openingDate ?? null,
status = status ?? null,
logicalUuid = logicalUuid ?? null,
descr = descr ?? null,
uniqueId = uniqueId ?? null,
formTemplateId = formTemplateId ?? null,
contactId = contactId ?? null,
healthElementId = healthElementId ?? null,
planOfActionId = planOfActionId ?? null,
parent = parent ?? null,
secretForeignKeys = secretForeignKeys ?? {},
cryptedForeignKeys = cryptedForeignKeys ?? {},
delegations = delegations ?? {},
encryptionKeys = encryptionKeys ?? {},
encryptedSelf = encryptedSelf ?? null,
securityMetadata = securityMetadata ?? null,
_version = version ?? null;