toDatasetActionType method
Implementation
DatasetActionType toDatasetActionType() {
switch (this) {
case 'QUERY':
return DatasetActionType.query;
case 'CONTAINER':
return DatasetActionType.container;
}
throw Exception('$this is not known in enum DatasetActionType');
}