ContainerState constructor

const ContainerState({
  1. String? status,
  2. bool? running,
  3. bool? paused,
  4. bool? restarting,
  5. bool? oomKilled,
  6. bool? dead,
  7. int? pid,
  8. int? exitCode,
  9. String? error,
  10. String? startedAt,
  11. String? finishedAt,
  12. ContainerHealth? health,
})

Creates a ContainerState with the given fields.

Implementation

const ContainerState({
  this.status,
  this.running,
  this.paused,
  this.restarting,
  this.oomKilled,
  this.dead,
  this.pid,
  this.exitCode,
  this.error,
  this.startedAt,
  this.finishedAt,
  this.health,
});