Event constructor
Event({
- ContainerKilledEvent? containerKilled,
- ContainerStartedEvent? containerStarted,
- ContainerStoppedEvent? containerStopped,
- DelayedEvent? delayed,
- String? description,
- FailedEvent? failed,
- PullStartedEvent? pullStarted,
- PullStoppedEvent? pullStopped,
- String? timestamp,
- UnexpectedExitStatusEvent? unexpectedExitStatus,
- WorkerAssignedEvent? workerAssigned,
- 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,
});