Environment constructor

Environment({
  1. String? dockerImage,
  2. String? id,
  3. String? name,
  4. List<String>? publicKeys,
  5. String? sshHost,
  6. int? sshPort,
  7. String? sshUsername,
  8. String? state,
  9. String? webHost,
})

Implementation

Environment({
  this.dockerImage,
  this.id,
  this.name,
  this.publicKeys,
  this.sshHost,
  this.sshPort,
  this.sshUsername,
  this.state,
  this.webHost,
});