ListNotebookRuntimeTemplatesResponse.fromJson constructor
Implementation
factory ListNotebookRuntimeTemplatesResponse.fromJson(
Map<String, dynamic> json,
) {
return ListNotebookRuntimeTemplatesResponse(
notebookRuntimeTemplates:
decodeListMessage(
json['notebookRuntimeTemplates'],
NotebookRuntimeTemplate.fromJson,
) ??
[],
nextPageToken: json['nextPageToken'] ?? '',
);
}