toNotebookOutputOption method
Implementation
NotebookOutputOption toNotebookOutputOption() {
switch (this) {
case 'Allowed':
return NotebookOutputOption.allowed;
case 'Disabled':
return NotebookOutputOption.disabled;
}
throw Exception('$this is not known in enum NotebookOutputOption');
}