Attachment class

Annotations
  • @freezed

Constructors

Attachment({String? contentType, @JsonKey(name: '_contentType') Element? contentTypeElement, String? language, @JsonKey(name: '_language') Element? languageElement, String? data, @JsonKey(name: '_data') Element? dataElement, String? url, @JsonKey(name: '_url') Element? urlElement, FhirDecimal? size, @JsonKey(name: '_size') Element? sizeElement, String? hash, @JsonKey(name: '_hash') Element? hashElement, String? title, @JsonKey(name: '_title') Element? titleElement, String? creation, @JsonKey(name: '_creation') Element? creationElement})
const
factory
Attachment.fromJson(Map<String, dynamic> json)
Factory constructor, accepts Map<String, dynamic> as an argument
factory
Attachment.fromJsonString(String source)
Acts like a constructor, returns a Attachment, accepts a String as an argument, mostly because I got tired of typing it out
factory
Attachment.fromYaml(dynamic yaml)
Factory constructor, accepts a String in YAML format as an argument
factory

Properties

contentType String?
no setterinherited
contentTypeElement Element?
no setterinherited
copyWith → $AttachmentCopyWith<Attachment>
no setterinherited
creation String?
no setterinherited
creationElement Element?
no setterinherited
data String?
no setterinherited
dataElement Element?
no setterinherited
hash String?
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
hashElement Element?
no setterinherited
language String?
no setterinherited
languageElement Element?
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
size FhirDecimal?
no setterinherited
sizeElement Element?
no setterinherited
title String?
no setterinherited
titleElement Element?
no setterinherited
url String?
no setterinherited
urlElement Element?
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

Operators

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