Type class

A place holder that means any kind of data type

Constructors

Type({String? text, FixedList<Coding>? coding})
Constructs a new Type with an optional text and coding.
Type.fromJson(JsonObject _json)
Constructs a new Type instance from the provided JSON object.

Properties

coding FixedList<Coding>?
Code representation of the type
no setter
hashCode int
The hash code for this object.
no setteroverride
json → JsonObject
Converts this Type instance to a JSON object.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String?
Text representation of the type
no setter

Methods

copyWith({String? text, FixedList<Coding>? coding}) Type
Creates a deep copy of this Type.
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

Constants

codingField → const FieldDefinition<FixedList<Coding>>
Field definition for coding
fieldDefinitions → const List<FieldDefinition<Object>>
All field definitions for Type
textField → const FieldDefinition<String>
Field definition for text