toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final containerName = this.containerName;
final cpuLimit = this.cpuLimit;
final cpuRequest = this.cpuRequest;
final memoryLimit = this.memoryLimit;
final memoryRequest = this.memoryRequest;
return {
'containerName': ?containerName,
'cpuLimit': ?cpuLimit,
'cpuRequest': ?cpuRequest,
'memoryLimit': ?memoryLimit,
'memoryRequest': ?memoryRequest,
};
}