toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final architecture = this.architecture;
  final bootOption = this.bootOption;
  final committedStorageMb = this.committedStorageMb;
  final computerName = this.computerName;
  final cpuCount = this.cpuCount;
  final diskCount = this.diskCount;
  final disks = this.disks;
  final memoryMb = this.memoryMb;
  final osDescription = this.osDescription;
  final osDisk = this.osDisk;
  final powerState = this.powerState;
  final tags = this.tags;
  final vmId = this.vmId;
  final vmSize = this.vmSize;
  return {
    'architecture': ?architecture,
    'bootOption': ?bootOption,
    'committedStorageMb': ?committedStorageMb,
    'computerName': ?computerName,
    'cpuCount': ?cpuCount,
    'diskCount': ?diskCount,
    'disks': ?disks,
    'memoryMb': ?memoryMb,
    'osDescription': ?osDescription,
    'osDisk': ?osDisk,
    'powerState': ?powerState,
    'tags': ?tags,
    'vmId': ?vmId,
    'vmSize': ?vmSize,
  };
}