ContainerInspectInfo constructor

const ContainerInspectInfo({
  1. String? id,
  2. String? created,
  3. String? path,
  4. List<String>? args,
  5. ContainerState? state,
  6. String? image,
  7. String? resolvConfPath,
  8. String? hostnamePath,
  9. String? hostsPath,
  10. String? logPath,
  11. String? name,
  12. int? restartCount,
  13. String? driver,
  14. String? platform,
  15. ContainerImageManifestDescriptor? imageManifestDescriptor,
  16. String? mountLabel,
  17. String? processLabel,
  18. String? appArmorProfile,
  19. List<String>? execIDs,
  20. ContainerHostConfig? hostConfig,
  21. ContainerGraphDriver? graphDriver,
  22. int? sizeRw,
  23. int? sizeRootFs,
  24. List<ContainerMount>? mounts,
  25. ContainerConfig? config,
  26. ContainerNetworkSettings? networkSettings,
})

Creates a ContainerInspectInfo with the given fields.

Implementation

const ContainerInspectInfo({
  this.id,
  this.created,
  this.path,
  this.args,
  this.state,
  this.image,
  this.resolvConfPath,
  this.hostnamePath,
  this.hostsPath,
  this.logPath,
  this.name,
  this.restartCount,
  this.driver,
  this.platform,
  this.imageManifestDescriptor,
  this.mountLabel,
  this.processLabel,
  this.appArmorProfile,
  this.execIDs,
  this.hostConfig,
  this.graphDriver,
  this.sizeRw,
  this.sizeRootFs,
  this.mounts,
  this.config,
  this.networkSettings,
});