StopNotebookRuntimeRequest.fromJson constructor

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

Implementation

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