DataRepositoryTaskStatus class

Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.

Constructors

DataRepositoryTaskStatus({int? failedCount, DateTime? lastUpdatedTime, int? succeededCount, int? totalCount})
DataRepositoryTaskStatus.fromJson(Map<String, dynamic> json)
factory

Properties

failedCount int?
A running total of the number of files that the task failed to process.
final
hashCode int
The hash code for this object.
no setterinherited
lastUpdatedTime DateTime?
The time at which the task status was last updated.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
succeededCount int?
A running total of the number of files that the task has successfully processed.
final
totalCount int?
The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.
final

Methods

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.
inherited