toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deploymentConfig = this.deploymentConfig;
final deploymentId = this.deploymentId;
final entryPoints = this.entryPoints;
final updateTime = this.updateTime;
return {
'deploymentConfig': ?deploymentConfig,
'deploymentId': ?deploymentId,
'entryPoints': ?entryPoints,
'updateTime': ?updateTime,
};
}