toNotebookInstanceLifecycleConfigSortOrder method

NotebookInstanceLifecycleConfigSortOrder toNotebookInstanceLifecycleConfigSortOrder()

Implementation

NotebookInstanceLifecycleConfigSortOrder
    toNotebookInstanceLifecycleConfigSortOrder() {
  switch (this) {
    case 'Ascending':
      return NotebookInstanceLifecycleConfigSortOrder.ascending;
    case 'Descending':
      return NotebookInstanceLifecycleConfigSortOrder.descending;
  }
  throw Exception(
      '$this is not known in enum NotebookInstanceLifecycleConfigSortOrder');
}