Job constructor

Job({
  1. String? id,
  2. JobStatusEnum? status,
  3. int? totalCount,
  4. int? processedCount,
  5. int? progressPercent,
  6. JobSummary? summary,
  7. DateTime? createdAt,
  8. DateTime? completedAt,
  9. Object? metadata,
})

Returns a new Job instance.

Implementation

Job({
  this.id,
  this.status,
  this.totalCount,
  this.processedCount,
  this.progressPercent,
  this.summary,
  this.createdAt,
  this.completedAt,
  this.metadata,
});