Environment constructor

Environment({
  1. ContainerImage? containerImage,
  2. String? createTime,
  3. String? description,
  4. String? displayName,
  5. String? name,
  6. String? postStartupScript,
  7. VmImage? vmImage,
})

Implementation

Environment({
  this.containerImage,
  this.createTime,
  this.description,
  this.displayName,
  this.name,
  this.postStartupScript,
  this.vmImage,
});