toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final count = this.count;
final cpu = this.cpu;
final memoryGb = this.memoryGb;
final storageGb = this.storageGb;
return {
'count': ?count,
'cpu': ?cpu,
'memoryGb': ?memoryGb,
'storageGb': ?storageGb,
};
}