Reference class

Represents a reference from one resource to another within the FHIR specification.

Constructors

Reference({String? reference, String? type, String? identifier, String? display})
Constructs a new Reference from a JsonObject.
Reference.fromJson(JsonObject _json)
Constructs a Reference instance from a JSON object.

Properties

display String?
A human-readable string to accompany the reference, providing more context.
no setter
hashCode int
The hash code for this object.
no setteroverride
identifier String?
An identifier for the referenced resource.
no setter
json → JsonObject
Converts this Reference instance to a JSON object.
no setter
reference String?
A reference to a resource.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String?
The type of the referenced resource.
no setter

Methods

copyWith({String? reference, String? type, String? identifier, String? display}) Reference
Creates a deep copy of this Reference.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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