SequenceQuality constructor

const SequenceQuality({
  1. SequenceQualityType? type,
  2. @JsonKey(name: '_type') Element? typeElement,
  3. CodeableConcept? standardSequence,
  4. FhirDecimal? start,
  5. @JsonKey(name: '_start') Element? startElement,
  6. FhirDecimal? end,
  7. @JsonKey(name: '_end') Element? endElement,
  8. Quantity? score,
  9. CodeableConcept? method,
  10. FhirDecimal? truthTP,
  11. @JsonKey(name: '_truthTP') Element? truthTPElement,
  12. FhirDecimal? queryTP,
  13. @JsonKey(name: '_queryTP') Element? queryTPElement,
  14. FhirDecimal? truthFN,
  15. @JsonKey(name: '_truthFN') Element? truthFNElement,
  16. FhirDecimal? queryFP,
  17. @JsonKey(name: '_queryFP') Element? queryFPElement,
  18. FhirDecimal? gtFP,
  19. @JsonKey(name: '_gtFP') Element? gtFPElement,
  20. FhirDecimal? precision,
  21. @JsonKey(name: '_precision') Element? precisionElement,
  22. FhirDecimal? recall,
  23. @JsonKey(name: '_recall') Element? recallElement,
  24. FhirDecimal? fScore,
  25. @JsonKey(name: '_fScore') Element? fScoreElement,
})

Implementation

const factory SequenceQuality({
  SequenceQualityType? type,
  @JsonKey(name: '_type') Element? typeElement,
  CodeableConcept? standardSequence,
  FhirDecimal? start,
  @JsonKey(name: '_start') Element? startElement,
  FhirDecimal? end,
  @JsonKey(name: '_end') Element? endElement,
  Quantity? score,
  CodeableConcept? method,
  FhirDecimal? truthTP,
  @JsonKey(name: '_truthTP') Element? truthTPElement,
  FhirDecimal? queryTP,
  @JsonKey(name: '_queryTP') Element? queryTPElement,
  FhirDecimal? truthFN,
  @JsonKey(name: '_truthFN') Element? truthFNElement,
  FhirDecimal? queryFP,
  @JsonKey(name: '_queryFP') Element? queryFPElement,
  FhirDecimal? gtFP,
  @JsonKey(name: '_gtFP') Element? gtFPElement,
  FhirDecimal? precision,
  @JsonKey(name: '_precision') Element? precisionElement,
  FhirDecimal? recall,
  @JsonKey(name: '_recall') Element? recallElement,
  FhirDecimal? fScore,
  @JsonKey(name: '_fScore') Element? fScoreElement,
}) = _SequenceQuality;