DataRepositoryTaskStatus constructor

DataRepositoryTaskStatus({
  1. int? failedCount,
  2. DateTime? lastUpdatedTime,
  3. int? succeededCount,
  4. int? totalCount,
})

Implementation

DataRepositoryTaskStatus({
  this.failedCount,
  this.lastUpdatedTime,
  this.succeededCount,
  this.totalCount,
});