MachineDetails constructor

MachineDetails({
  1. MachineArchitectureDetails? architecture,
  2. int? coreCount,
  3. String? createTime,
  4. MachineDiskDetails? disks,
  5. GuestOsDetails? guestOs,
  6. String? machineName,
  7. int? memoryMb,
  8. MachineNetworkDetails? network,
  9. PlatformDetails? platform,
  10. String? powerState,
  11. String? uuid,
})

Implementation

MachineDetails({
  this.architecture,
  this.coreCount,
  this.createTime,
  this.disks,
  this.guestOs,
  this.machineName,
  this.memoryMb,
  this.network,
  this.platform,
  this.powerState,
  this.uuid,
});