TaskDescriptor class
A TaskDescriptor holds information about each task to be triggered by a Trigger as part of a StudyProtocol. Each task holds a list of Measures to be done as part of this task. A TaskDescriptor is hence an aggregation of Measures.
- Inheritance
-
- Object
- Serializable
- TaskDescriptor
- Implementers
- Annotations
-
- @JsonSerializable(fieldRename: FieldRename.none, includeIfNull: false)
Constructors
-
TaskDescriptor.new({String? name, List<
Measure> ? measures}) -
Create a task. If
name
is not specified, a name is generated. -
TaskDescriptor.fromJson(Map<
String, dynamic> json) -
factory
Properties
- $type ↔ String?
-
The runtime class name (type) of this object.
Used for deserialization from JSON objects.
getter/setter pairinherited
- fromJsonFunction → Function
-
The function which can convert a JSON string to an object of this type.
no setteroverride
- hashCode → int
-
The hash code for this object.
no setterinherited
- 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.no setteroverride -
measures
↔ List<
Measure> -
A list of Measures to be done as part of this task.
getter/setter pair
- name ↔ String
-
The name of this task. Unique for this StudyProtocol.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
addMeasure(
Measure measure) → void - Add a Measure to this task.
-
addMeasures(
Iterable< Measure> list) → void - Add a list of Measures to this task.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
removeMeasure(
Measure measure) → void - Remove a Measure from this task.
-
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