JobListEntry constructor

JobListEntry({
  1. DateTime? creationDate,
  2. String? description,
  3. bool? isMaster,
  4. String? jobId,
  5. JobState? jobState,
  6. JobType? jobType,
  7. SnowballType? snowballType,
})

Implementation

JobListEntry({
  this.creationDate,
  this.description,
  this.isMaster,
  this.jobId,
  this.jobState,
  this.jobType,
  this.snowballType,
});