Person class

Mixed in types
Annotations
  • @freezed

Constructors

Person({@Default(Dstu2ResourceType.Person) @JsonKey(unknownEnumValue: Dstu2ResourceType.Person) Dstu2ResourceType resourceType, @JsonKey(includeFromJson: true, includeToJson: false) int? dbId, @JsonKey(name: 'id') FhirId? fhirId, FhirMeta? meta, FhirUri? implicitRules, @JsonKey(name: '_implicitRules') Element? implicitRulesElement, FhirCode? language, @JsonKey(name: '_language') Element? languageElement, Narrative? text, List<Resource>? contained, @JsonKey(name: 'extension') List<FhirExtension>? extension_, List<FhirExtension>? modifierExtension, List<Identifier>? identifier, List<HumanName>? name, List<ContactPoint>? telecom, @JsonKey(unknownEnumValue: PersonGender.unknown) PersonGender? gender, @JsonKey(name: '_gender') Element? genderElement, FhirDate? birthDate, @JsonKey(name: '_birthDate') Element? birthDateElement, List<Address>? address, Attachment? photo, Reference? managingOrganization, FhirBoolean? active, @JsonKey(name: '_active') Element? activeElement, List<PersonLink>? link})
const
factory
Person.fromJson(Map<String, dynamic> json)
Factory constructor, accepts Map<String, dynamic> as an argument
factory
Person.fromJsonString(String source)
Acts like a constructor, returns a Person, accepts a String as an argument, mostly because I got tired of typing it out
factory
Person.fromYaml(dynamic yaml)
Factory constructor, accepts a String in YAML format as an argument
factory

Properties

active FhirBoolean?
no setterinherited
activeElement Element?
no setterinherited
address List<Address>?
no setterinherited
birthDate FhirDate?
no setterinherited
birthDateElement Element?
no setterinherited
contained List<Resource>?
no setterinherited
copyWith → $PersonCopyWith<Person>
no setterinherited
dbId int?
no setterinherited
extension_ List<FhirExtension>?
no setterinherited
fhirId FhirId?
no setterinherited
gender PersonGender?
no setterinherited
genderElement Element?
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
identifier List<Identifier>?
no setterinherited
implicitRules FhirUri?
no setterinherited
implicitRulesElement Element?
no setterinherited
language FhirCode?
no setterinherited
languageElement Element?
no setterinherited
no setterinherited
managingOrganization Reference?
no setterinherited
meta FhirMeta?
no setterinherited
modifierExtension List<FhirExtension>?
no setterinherited
name List<HumanName>?
no setterinherited
path String
Local Reference for this Resource, form is "ResourceType/Id"
no setterinherited
photo Attachment?
no setterinherited
resourceType Dstu2ResourceType
no setterinherited
resourceTypeString String?
produce a string of the resourceType
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
telecom List<ContactPoint>?
no setterinherited
text Narrative?
no setterinherited
thisReference Reference
Convenience method to return a Reference referring to that Resource
no setterinherited

Methods

newId() Resource
returns the same resource with a new ID (even if there is already an ID present)
inherited
newIdIfNoId() Resource
returns the same resource with a new ID if there is no current ID
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDbJson() Map<String, dynamic>
The normal toJson ignores the dbId, and produces the fhirId as the id However, if you're going to use this as a database entry, you have to switch those two ids
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
override
toString() String
A string representation of this object.
inherited
toYaml() String
Produces a Yaml formatted String version of the object
inherited
updateAddressCity(String city, [int index = 0]) Person
updateAddressCountry(String country, [int index = 0]) Person
updateAddressDistrict(String district, [int index = 0]) Person
updateAddressLine(List<String> line, [int index = 0]) Person
updateAddressPeriod(Period period, [int index = 0]) Person
updateAddressPostalCode(String postalCode, [int index = 0]) Person
updateAddressState(String state, [int index = 0]) Person
updateAddressText(String text, [int index = 0]) Person
updateAddressType(AddressType type, [int index = 0]) Person
updateAddressUse(AddressUse use, [int index = 0]) Person
updateContactPointPeriod(Period period, [int index = 0]) Person
updateContactPointRank(FhirPositiveInt rank, [int index = 0]) Person
updateContactPointSystem(ContactPointSystem system, [int index = 0]) Person
updateContactPointUse(ContactPointUse use, [int index = 0]) Person
updateContactPointValue(String value, [int index = 0]) Person
updateHumanNameFamily(List<String> family, [int index = 0]) Person
updateHumanNameGiven(List<String> given, [int index = 0]) Person
updateHumanNamePeriod(Period period, [int index = 0]) Person
updateHumanNamePrefix(List<String> prefix, [int index = 0]) Person
updateHumanNameSuffix(List<String> suffix, [int index = 0]) Person
updateHumanNameText(String text, [int index = 0]) Person
updateHumanNameUse(HumanNameUse use, [int index = 0]) Person
updateVersion({FhirMeta? oldMeta}) Resource
Updates the meta field of this Resource, updates the meta.lastUpdated field, adds 1 to the version number
inherited

Operators

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