CreateNotebookRuntimeTemplateRequest.fromJson constructor
Implementation
factory CreateNotebookRuntimeTemplateRequest.fromJson(
Map<String, dynamic> json,
) {
return CreateNotebookRuntimeTemplateRequest(
parent: json['parent'] ?? '',
notebookRuntimeTemplate: decode(
json['notebookRuntimeTemplate'],
NotebookRuntimeTemplate.fromJson,
),
notebookRuntimeTemplateId: json['notebookRuntimeTemplateId'] ?? '',
);
}