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. DateTime? createdAt,
  9. 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.createdAt,
  this.expiresAt,
});