Runnable constructor

Runnable({
  1. bool? alwaysRun,
  2. bool? background,
  3. Barrier? barrier,
  4. Container? container,
  5. String? displayName,
  6. Environment? environment,
  7. bool? ignoreExitStatus,
  8. Map<String, String>? labels,
  9. Script? script,
  10. String? timeout,
})

Implementation

Runnable({
  this.alwaysRun,
  this.background,
  this.barrier,
  this.container,
  this.displayName,
  this.environment,
  this.ignoreExitStatus,
  this.labels,
  this.script,
  this.timeout,
});