toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final architecture = this.architecture;
final coreCount = this.coreCount;
final createTime = this.createTime;
final diskPartitions = this.diskPartitions;
final disks = this.disks;
final guestOs = this.guestOs;
final machineName = this.machineName;
final memoryMb = this.memoryMb;
final network = this.network;
final platform = this.platform;
final powerState = this.powerState;
final uuid = this.uuid;
return {
'architecture': ?architecture,
'coreCount': ?coreCount,
'createTime': ?createTime,
'diskPartitions': ?diskPartitions,
'disks': ?disks,
'guestOs': ?guestOs,
'machineName': ?machineName,
'memoryMb': ?memoryMb,
'network': ?network,
'platform': ?platform,
'powerState': ?powerState,
'uuid': ?uuid,
};
}