toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cpuPlatform = this.cpuPlatform;
final creationTimestamp = this.creationTimestamp;
final deprecated = this.deprecated;
final description = this.description;
final guestCpus = this.guestCpus;
final id = this.id;
final kind = this.kind;
final localSsdGb = this.localSsdGb;
final maxVms = this.maxVms;
final memoryMb = this.memoryMb;
final name = this.name;
final selfLink = this.selfLink;
final zone = this.zone;
return {
'cpuPlatform': ?cpuPlatform,
'creationTimestamp': ?creationTimestamp,
'deprecated': ?deprecated,
'description': ?description,
'guestCpus': ?guestCpus,
'id': ?id,
'kind': ?kind,
'localSsdGb': ?localSsdGb,
'maxVms': ?maxVms,
'memoryMb': ?memoryMb,
'name': ?name,
'selfLink': ?selfLink,
'zone': ?zone,
};
}