BuildStep constructor

BuildStep({
  1. List<String>? args,
  2. String? dir,
  3. String? entrypoint,
  4. List<String>? env,
  5. String? id,
  6. String? name,
  7. TimeSpan? pullTiming,
  8. String? script,
  9. List<String>? secretEnv,
  10. String? status,
  11. String? timeout,
  12. TimeSpan? timing,
  13. List<Volume>? volumes,
  14. List<String>? waitFor,
})

Implementation

BuildStep({
  this.args,
  this.dir,
  this.entrypoint,
  this.env,
  this.id,
  this.name,
  this.pullTiming,
  this.script,
  this.secretEnv,
  this.status,
  this.timeout,
  this.timing,
  this.volumes,
  this.waitFor,
});