NotebookSoftwareConfig.fromJson constructor
Implementation
factory NotebookSoftwareConfig.fromJson(Map<String, dynamic> json) {
return NotebookSoftwareConfig(
colabImage: decode(json['colabImage'], ColabImage.fromJson),
env: decodeListMessage(json['env'], EnvVar.fromJson) ?? [],
postStartupScriptConfig: decode(
json['postStartupScriptConfig'],
PostStartupScriptConfig.fromJson,
),
);
}