Job constructor

Job({
  1. DateTime? creationDate,
  2. bool? isCanceled,
  3. String? jobId,
  4. JobType? jobType,
})

Implementation

Job({
  this.creationDate,
  this.isCanceled,
  this.jobId,
  this.jobType,
});