SupervisorContainer constructor

SupervisorContainer({
  1. String? status,
  2. String? serviceName,
  3. num? appId,
  4. num? imageId,
  5. num? serviceId,
  6. String? containerId,
  7. String? createdAt,
})

Returns a new SupervisorContainer instance.

Implementation

SupervisorContainer({
  this.status,
  this.serviceName,
  this.appId,
  this.imageId,
  this.serviceId,
  this.containerId,
  this.createdAt,
});