RenderJobView constructor

const RenderJobView({
  1. required String id,
  2. required String status,
  3. int? completed,
  4. int? total,
  5. String? error,
  6. FileLink? video,
  7. FileLink? poster,
  8. String? code,
  9. Map<String, Object?>? spec,
  10. DateTime? createdAt,
  11. DateTime? expiresAt,
})

Creates a job view.

Implementation

const RenderJobView({
  required this.id,
  required this.status,
  this.completed,
  this.total,
  this.error,
  this.video,
  this.poster,
  this.code,
  this.spec,
  this.createdAt,
  this.expiresAt,
});