toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assetType = this.assetType;
final availableCount = this.availableCount;
final gcpService = this.gcpService;
final instanceQuota = this.instanceQuota;
final location = this.location;
final name = this.name;
final networkBandwidth = this.networkBandwidth;
final serverCount = this.serverCount;
final storageGib = this.storageGib;
return {
'assetType': ?assetType,
'availableCount': ?availableCount,
'gcpService': ?gcpService,
'instanceQuota': ?instanceQuota,
'location': ?location,
'name': ?name,
'networkBandwidth': ?networkBandwidth,
'serverCount': ?serverCount,
'storageGib': ?storageGib,
};
}