AzureVmDetails constructor

AzureVmDetails({
  1. String? bootOption,
  2. String? committedStorageMb,
  3. String? computerName,
  4. int? cpuCount,
  5. int? diskCount,
  6. List<Disk>? disks,
  7. int? memoryMb,
  8. OSDescription? osDescription,
  9. OSDisk? osDisk,
  10. String? powerState,
  11. Map<String, String>? tags,
  12. String? vmId,
  13. String? vmSize,
})

Implementation

AzureVmDetails({
  this.bootOption,
  this.committedStorageMb,
  this.computerName,
  this.cpuCount,
  this.diskCount,
  this.disks,
  this.memoryMb,
  this.osDescription,
  this.osDisk,
  this.powerState,
  this.tags,
  this.vmId,
  this.vmSize,
});