toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final architecture = this.architecture;
  final committedStorageBytes = this.committedStorageBytes;
  final disks = this.disks;
  final firmware = this.firmware;
  final vmCapabilitiesInfo = this.vmCapabilitiesInfo;
  return {
    'architecture': ?architecture,
    'committedStorageBytes': ?committedStorageBytes,
    'disks': ?disks,
    'firmware': ?firmware,
    'vmCapabilitiesInfo': ?vmCapabilitiesInfo,
  };
}