HumanName constructor

const HumanName({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. @JsonKey(unknownEnumValue: HumanNameUse.unknown) HumanNameUse? use,
  4. @JsonKey(name: '_use') Element? useElement,
  5. String? text,
  6. @JsonKey(name: '_text') Element? textElement,
  7. String? family,
  8. @JsonKey(name: '_family') Element? familyElement,
  9. List<String>? given,
  10. @JsonKey(name: '_given') List<Element?>? givenElement,
  11. List<String>? prefix,
  12. @JsonKey(name: '_prefix') List<Element?>? prefixElement,
  13. List<String>? suffix,
  14. @JsonKey(name: '_suffix') List<Element?>? suffixElement,
  15. Period? period,
})

HumanName A human's name with the ability to identify parts and usage.

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.

use Identifies the purpose for this name.

useElement Extensions for use

text Specifies the entire name as it should be displayed e.g. on an application UI. This may be provided instead of or as well as the specific parts.

textElement Extensions for text

family The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.

familyElement Extensions for family

given Given name.

givenElement Extensions for given

prefix Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name.

prefixElement Extensions for prefix

suffix Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name.

suffixElement Extensions for suffix

period Indicates the period of time when this name was valid for the named person.

Implementation

const factory HumanName({
  /// [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_,

  /// [use] Identifies the purpose for this name.
  @JsonKey(unknownEnumValue: HumanNameUse.unknown) HumanNameUse? use,

  /// [useElement] Extensions for use
  @JsonKey(name: '_use') Element? useElement,

  /// [text] Specifies the entire name as it should be displayed e.g. on an
  /// application UI. This may be provided instead of or as well as the specific
  ///  parts.
  String? text,

  /// [textElement] Extensions for text
  @JsonKey(name: '_text') Element? textElement,

  /// [family] The part of a name that links to the genealogy. In some cultures
  ///  (e.g. Eritrea) the family name of a son is the first name of his father.
  String? family,

  /// [familyElement] Extensions for family
  @JsonKey(name: '_family') Element? familyElement,

  /// [given] Given name.
  List<String>? given,

  /// [givenElement] Extensions for given
  @JsonKey(name: '_given') List<Element?>? givenElement,

  /// [prefix] Part of the name that is acquired as a title due to academic,
  /// legal, employment or nobility status, etc. and that appears at the start
  ///  of the name.
  List<String>? prefix,

  /// [prefixElement] Extensions for prefix
  @JsonKey(name: '_prefix') List<Element?>? prefixElement,

  /// [suffix] Part of the name that is acquired as a title due to academic,
  /// legal, employment or nobility status, etc. and that appears at the end of
  ///  the name.
  List<String>? suffix,

  /// [suffixElement] Extensions for suffix
  @JsonKey(name: '_suffix') List<Element?>? suffixElement,

  /// [period] Indicates the period of time when this name was valid for the
  ///  named person.
  Period? period,
}) = _HumanName;