DeleteNotebookRuntimeRequest.fromJson constructor

DeleteNotebookRuntimeRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeleteNotebookRuntimeRequest.fromJson(Map<String, dynamic> json) {
  return DeleteNotebookRuntimeRequest(name: json['name'] ?? '');
}