Job constructor

Job({
  1. String? createTime,
  2. String? expireTime,
  3. String? id,
  4. String? name,
  5. String? reportTypeId,
  6. bool? systemManaged,
})

Implementation

Job({
  this.createTime,
  this.expireTime,
  this.id,
  this.name,
  this.reportTypeId,
  this.systemManaged,
});