RatioRange constructor

const RatioRange({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. Quantity? lowNumerator,
  4. Quantity? highNumerator,
  5. Quantity? denominator,
})

RatioRangeRange "A range of ratios expressed as a low and high numerator and a denominator.", id "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces." extension "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", lowNumerator "The value of the low limit numerator." highNumerator "The value of the high limit numerator." denominator "The value of the denominator."

Implementation

const factory RatioRange({
  /// [id] "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."
  @JsonKey(name: 'id') String? fhirId,

  /// [extension] "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance  applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [lowNumerator] "The value of the low limit numerator."
  Quantity? lowNumerator,

  /// [highNumerator] "The value of the high limit numerator."
  Quantity? highNumerator,

  /// [denominator] "The value of the denominator."
  Quantity? denominator,
}) = _RatioRange;