toDataSetImportMode method
Implementation
DataSetImportMode toDataSetImportMode() {
switch (this) {
case 'SPICE':
return DataSetImportMode.spice;
case 'DIRECT_QUERY':
return DataSetImportMode.directQuery;
}
throw Exception('$this is not known in enum DataSetImportMode');
}