SupervisorImage constructor

SupervisorImage({
  1. String? name,
  2. num? appId,
  3. String? serviceName,
  4. num? imageId,
  5. String? dockerImageId,
  6. String? status,
  7. num? downloadProgress,
})

Returns a new SupervisorImage instance.

Implementation

SupervisorImage({
  this.name,
  this.appId,
  this.serviceName,
  this.imageId,
  this.dockerImageId,
  this.status,
  this.downloadProgress,
});