Event constructor

Event({
  1. ContainerKilledEvent? containerKilled,
  2. ContainerStartedEvent? containerStarted,
  3. ContainerStoppedEvent? containerStopped,
  4. DelayedEvent? delayed,
  5. String? description,
  6. FailedEvent? failed,
  7. PullStartedEvent? pullStarted,
  8. PullStoppedEvent? pullStopped,
  9. String? timestamp,
  10. UnexpectedExitStatusEvent? unexpectedExitStatus,
  11. WorkerAssignedEvent? workerAssigned,
  12. WorkerReleasedEvent? workerReleased,
})

Implementation

Event({
  this.containerKilled,
  this.containerStarted,
  this.containerStopped,
  this.delayed,
  this.description,
  this.failed,
  this.pullStarted,
  this.pullStopped,
  this.timestamp,
  this.unexpectedExitStatus,
  this.workerAssigned,
  this.workerReleased,
});