CustomJob constructor

CustomJob({
  1. String name = '',
  2. required String displayName,
  3. required CustomJobSpec? jobSpec,
  4. JobState state = JobState.$default,
  5. Timestamp? createTime,
  6. Timestamp? startTime,
  7. Timestamp? endTime,
  8. Timestamp? updateTime,
  9. Status? error,
  10. Map<String, String> labels = const {},
  11. EncryptionSpec? encryptionSpec,
  12. Map<String, String> webAccessUris = const {},
  13. bool satisfiesPzs = false,
  14. bool satisfiesPzi = false,
})

Implementation

CustomJob({
  this.name = '',
  required this.displayName,
  required this.jobSpec,
  this.state = JobState.$default,
  this.createTime,
  this.startTime,
  this.endTime,
  this.updateTime,
  this.error,
  this.labels = const {},
  this.encryptionSpec,
  this.webAccessUris = const {},
  this.satisfiesPzs = false,
  this.satisfiesPzi = false,
}) : super(fullyQualifiedName);