StartNotebookExecutionOutput.fromJson constructor
Implementation
factory StartNotebookExecutionOutput.fromJson(Map<String, dynamic> json) {
return StartNotebookExecutionOutput(
notebookExecutionId: json['NotebookExecutionId'] as String?,
);
}