Job constructor
Job({
- String? id,
- JobStatusEnum? status,
- int? totalCount,
- int? processedCount,
- int? progressPercent,
- JobSummary? summary,
- DateTime? createdAt,
- DateTime? completedAt,
- 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,
});