CustomProtocolTask class Null safety
A TaskDescriptor which contains a definition on how to run tasks, measures, and triggers which differs from the CARP domain model.
- Inheritance
- Object
- Serializable
- TaskDescriptor
- CustomProtocolTask
- Annotations
- @JsonSerializable(fieldRename: FieldRename.none, includeIfNull: false)
Constructors
- CustomProtocolTask({String? name, required String studyProtocol})
-
CustomProtocolTask.fromJson(Map<
String, dynamic> json) -
factory
Properties
- $type ↔ String?
-
The runtime class name (type) of this object.
Used for deserialization from JSON objects.
read / write, inherited
- fromJsonFunction → Function
-
The function which can convert a JSON string to an object of this type.
read-only, override
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- jsonType → String
-
Return the $type to be used for JSON serialization of this class.
Default is runtimeType. Only specify this if you need another type.
read-only, inherited
-
measures
↔ List<
Measure> -
A list of
Measure
s to be done as part of this task.read / write, inherited - name ↔ String
-
The name of this task. Unique for this StudyProtocol.
read / write, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- studyProtocol ↔ String
-
A definition on how to run a study on a master device, serialized as a string.
read / write
Methods
-
addMeasure(
Measure measure) → void -
Add a Measure to this task.
inherited
-
addMeasures(
Iterable< Measure> list) → void -
Add a list of Measures to this task.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
removeMeasure(
Measure measure) → void -
Remove a Measure from this task.
inherited
-
toJson(
) → Map< String, dynamic> -
Return a JSON encoding of this object.
override
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited