TaskSpec constructor

TaskSpec({
  1. List<Container>? containers,
  2. int? maxRetries,
  3. String? serviceAccountName,
  4. String? timeoutSeconds,
  5. List<Volume>? volumes,
})

Implementation

TaskSpec({
  this.containers,
  this.maxRetries,
  this.serviceAccountName,
  this.timeoutSeconds,
  this.volumes,
});