toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final creator = this.creator;
final description = this.description;
final environmentConfig = this.environmentConfig;
final jupyterSession = this.jupyterSession;
final labels = this.labels;
final name = this.name;
final runtimeConfig = this.runtimeConfig;
final sparkConnectSession = this.sparkConnectSession;
final updateTime = this.updateTime;
final uuid = this.uuid;
return {
'createTime': ?createTime,
'creator': ?creator,
'description': ?description,
'environmentConfig': ?environmentConfig,
'jupyterSession': ?jupyterSession,
'labels': ?labels,
'name': ?name,
'runtimeConfig': ?runtimeConfig,
'sparkConnectSession': ?sparkConnectSession,
'updateTime': ?updateTime,
'uuid': ?uuid,
};
}