Money constructor

const Money({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. FhirDecimal? value,
  4. @JsonKey(name: '_value') Element? valueElement,
  5. FhirCode? currency,
  6. @JsonKey(name: '_currency') Element? currencyElement,
})

Money An amount of economic utility in some recognized currency.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ ("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 managable, 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.

value Numerical value (with implicit precision).

valueElement ("_value") Extensions for value

currency ISO 4217 Currency Code.

currencyElement ("_currency") Extensions for currency

Implementation

const factory Money({
  /// [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_] ("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 managable, 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_,

  /// [value] Numerical value (with implicit precision).
  FhirDecimal? value,

  /// [valueElement] ("_value") Extensions for value
  @JsonKey(name: '_value') Element? valueElement,

  /// [currency] ISO 4217 Currency Code.
  FhirCode? currency,

  /// [currencyElement] ("_currency") Extensions for currency
  @JsonKey(name: '_currency') Element? currencyElement,
}) = _Money;