toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (createTime != null) 'createTime': createTime!,
  if (creator != null) 'creator': creator!,
  if (description != null) 'description': description!,
  if (environmentConfig != null) 'environmentConfig': environmentConfig!,
  if (jupyterSession != null) 'jupyterSession': jupyterSession!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (runtimeConfig != null) 'runtimeConfig': runtimeConfig!,
  if (sparkConnectSession != null)
    'sparkConnectSession': sparkConnectSession!,
  if (updateTime != null) 'updateTime': updateTime!,
  if (uuid != null) 'uuid': uuid!,
};