ContentDto constructor

ContentDto({
  1. String? stringValue,
  2. double? numberValue,
  3. bool? booleanValue,
  4. DateTime? instantValue,
  5. int? fuzzyDateValue,
  6. String? binaryValue,
  7. String? documentId,
  8. MeasureDto? measureValue,
  9. MedicationDto? medicationValue,
  10. TimeSeriesDto? timeSeries,
  11. List<ServiceDto> compoundValue = const [],
  12. List<MeasureDto> ratio = const [],
  13. List<MeasureDto> range = const [],
})

Returns a new ContentDto instance.

Implementation

ContentDto({
  this.stringValue,
  this.numberValue,
  this.booleanValue,
  this.instantValue,
  this.fuzzyDateValue,
  this.binaryValue,
  this.documentId,
  this.measureValue,
  this.medicationValue,
  this.timeSeries,
  this.compoundValue = const [],
  this.ratio = const [],
  this.range = const [],
});