PatientContact class

Annotations
  • @freezed

Constructors

PatientContact({List<CodeableConcept>? relationship, HumanName? name, List<ContactPoint>? telecom, Address? address, PatientContactGender? gender, @JsonKey(name: '_gender') Element? genderElement, Reference? organization, Period? period})
const
factory
PatientContact.fromJson(Map<String, dynamic> json)
Factory constructor, accepts Map<String, dynamic> as an argument
factory
PatientContact.fromJsonString(String source)
Acts like a constructor, returns a PatientContact, accepts a String as an argument, mostly because I got tired of typing it out
factory
PatientContact.fromYaml(dynamic yaml)
Factory constructor, accepts a String in YAML format as an argument
factory

Properties

address Address?
no setterinherited
copyWith → $PatientContactCopyWith<PatientContact>
no setterinherited
gender PatientContactGender?
no setterinherited
genderElement Element?
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
name HumanName?
no setterinherited
organization Reference?
no setterinherited
period Period?
no setterinherited
relationship List<CodeableConcept>?
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
telecom List<ContactPoint>?
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
inherited
toJsonString() String
Another convenience method because more and more I'm transmitting FHIR data as a String and not a Map
toString() String
A string representation of this object.
inherited
toYaml() String
Produces a Yaml formatted String version of the object
updateAddressCity(String city) PatientContact
updateAddressCountry(String country) PatientContact
updateAddressDistrict(String district) PatientContact
updateAddressLine(List<String> line) PatientContact
updateAddressPeriod(Period period) PatientContact
updateAddressPostalCode(String postalCode) PatientContact
updateAddressState(String state) PatientContact
updateAddressText(String text) PatientContact
updateAddressType(AddressType type) PatientContact
updateAddressUse(AddressUse use) PatientContact
updateContactPointPeriod(Period period, [int index = 0]) PatientContact
updateContactPointRank(FhirDecimal rank, [int index = 0]) PatientContact
updateContactPointSystem(ContactPointSystem system, [int index = 0]) PatientContact
updateContactPointUse(ContactPointUse use, [int index = 0]) PatientContact
updateContactPointValue(String value, [int index = 0]) PatientContact
updateHumanNameFamily(String family) PatientContact
updateHumanNameGiven(List<String> given) PatientContact
updateHumanNamePeriod(Period period) PatientContact
updateHumanNamePrefix(List<String> prefix) PatientContact
updateHumanNameSuffix(List<String> suffix) PatientContact
updateHumanNameText(String text) PatientContact
updateHumanNameUse(HumanNameUse use) PatientContact

Operators

operator ==(Object other) bool
The equality operator.
inherited