UpdateNotebookRuntimeTemplateRequest.fromJson constructor
Implementation
factory UpdateNotebookRuntimeTemplateRequest.fromJson(
Map<String, dynamic> json,
) {
return UpdateNotebookRuntimeTemplateRequest(
notebookRuntimeTemplate: decode(
json['notebookRuntimeTemplate'],
NotebookRuntimeTemplate.fromJson,
),
updateMask: decodeCustom(json['updateMask'], protobuf.FieldMask.fromJson),
);
}