TaskProgressBeanObject class
Details about a task.
Constructors
- TaskProgressBeanObject({String? description, required int elapsedRuntime, int? finished, required String id, required int lastUpdate, String? message, required int progress, dynamic result, required String self, int? started, required TaskProgressBeanObjectStatus status, required int submitted, required int submittedBy})
-
TaskProgressBeanObject.fromJson(Map<
String, Object?> json) -
factory
Properties
- description → String?
-
The description of the task.
final
- elapsedRuntime → int
-
The execution time of the task, in milliseconds.
final
- finished → int?
-
A timestamp recording when the task was finished.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
The ID of the task.
final
- lastUpdate → int
-
A timestamp recording when the task progress was last updated.
final
- message → String?
-
Information about the progress of the task.
final
- progress → int
-
The progress of the task, as a percentage complete.
final
- result → dynamic
-
The result of the task execution.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- self → String
-
The URL of the task.
final
- started → int?
-
A timestamp recording when the task was started.
final
- status → TaskProgressBeanObjectStatus
-
The status of the task.
final
- submitted → int
-
A timestamp recording when the task was submitted.
final
- submittedBy → int
-
The ID of the user who submitted the task.
final
Methods
-
copyWith(
{String? description, int? elapsedRuntime, int? finished, String? id, int? lastUpdate, String? message, int? progress, dynamic result, String? self, int? started, TaskProgressBeanObjectStatus? status, int? submitted, int? submittedBy}) → TaskProgressBeanObject -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object?> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited