DecryptedContent constructor

DecryptedContent({
  1. String? stringValue,
  2. double? numberValue,
  3. bool? booleanValue,
  4. DateTime? instantValue,
  5. int? fuzzyDateValue,
  6. Uint8List? binaryValue,
  7. String? documentId,
  8. Measure? measureValue,
  9. Medication? medicationValue,
  10. TimeSeries? timeSeries,
  11. List<DecryptedService>? compoundValue,
  12. List<Measure>? ratio,
  13. List<Measure>? range,
})

Implementation

DecryptedContent({
		String? stringValue,
		double? numberValue,
		bool? booleanValue,
		DateTime? instantValue,
		int? fuzzyDateValue,
		Uint8List? binaryValue,
		String? documentId,
		Measure? measureValue,
		Medication? medicationValue,
		TimeSeries? timeSeries,
		List<DecryptedService>? 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;