EncryptedPlanOfAction constructor
EncryptedPlanOfAction(
- String id, {
- int? status,
- int? numberOfCares,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - int? endOfLife,
- String? prescriberId,
- int? valueDate,
- int? openingDate,
- int? closingDate,
- int? deadlineDate,
- String? name,
- String? descr,
- String? note,
- String? idOpeningContact,
- String? idClosingContact,
- Set<
String> ? documentIds, - List<
EncryptedCareTeamMembership?> ? careTeamMemberships, - bool? relevant,
- Base64String? encryptedSelf,
Implementation
EncryptedPlanOfAction(
this.id,
{
int? status,
int? numberOfCares,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
int? endOfLife,
String? prescriberId,
int? valueDate,
int? openingDate,
int? closingDate,
int? deadlineDate,
String? name,
String? descr,
String? note,
String? idOpeningContact,
String? idClosingContact,
Set<String>? documentIds,
List<EncryptedCareTeamMembership?>? careTeamMemberships,
bool? relevant,
Base64String? encryptedSelf
}) : created = created ?? null,
modified = modified ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
tags = tags ?? {},
codes = codes ?? {},
endOfLife = endOfLife ?? null,
prescriberId = prescriberId ?? null,
valueDate = valueDate ?? null,
openingDate = openingDate ?? null,
closingDate = closingDate ?? null,
deadlineDate = deadlineDate ?? null,
name = name ?? null,
descr = descr ?? null,
note = note ?? null,
idOpeningContact = idOpeningContact ?? null,
idClosingContact = idClosingContact ?? null,
documentIds = documentIds ?? {},
careTeamMemberships = careTeamMemberships ?? [],
relevant = relevant ?? true,
encryptedSelf = encryptedSelf ?? null,
_status = status ?? 0,
_numberOfCares = numberOfCares ?? null;