EncryptedContent constructor
EncryptedContent({
- String? stringValue,
- double? numberValue,
- bool? booleanValue,
- DateTime? instantValue,
- int? fuzzyDateValue,
- Uint8List? binaryValue,
- String? documentId,
- Measure? measureValue,
- Medication? medicationValue,
- TimeSeries? timeSeries,
- List<
EncryptedService> ? compoundValue, - List<
Measure> ? ratio, - List<
Measure> ? range,
Implementation
EncryptedContent({
String? stringValue,
double? numberValue,
bool? booleanValue,
DateTime? instantValue,
int? fuzzyDateValue,
Uint8List? binaryValue,
String? documentId,
Measure? measureValue,
Medication? medicationValue,
TimeSeries? timeSeries,
List<EncryptedService>? compoundValue,
List<Measure>? ratio,
List<Measure>? range
}) : stringValue = stringValue ?? null,
numberValue = numberValue ?? null,
booleanValue = booleanValue ?? null,
instantValue = instantValue ?? null,
fuzzyDateValue = fuzzyDateValue ?? null,
binaryValue = binaryValue ?? null,
documentId = documentId ?? null,
measureValue = measureValue ?? null,
medicationValue = medicationValue ?? null,
timeSeries = timeSeries ?? null,
compoundValue = compoundValue ?? null,
ratio = ratio ?? null,
range = range ?? null;