ListNotebookExecutionsOutput.fromJson constructor
Implementation
factory ListNotebookExecutionsOutput.fromJson(Map<String, dynamic> json) {
return ListNotebookExecutionsOutput(
marker: json['Marker'] as String?,
notebookExecutions: (json['NotebookExecutions'] as List?)
?.whereNotNull()
.map((e) =>
NotebookExecutionSummary.fromJson(e as Map<String, dynamic>))
.toList(),
);
}