toNotebookInstanceSortKey method
Implementation
NotebookInstanceSortKey toNotebookInstanceSortKey() {
switch (this) {
case 'Name':
return NotebookInstanceSortKey.name;
case 'CreationTime':
return NotebookInstanceSortKey.creationTime;
case 'Status':
return NotebookInstanceSortKey.status;
}
throw Exception('$this is not known in enum NotebookInstanceSortKey');
}