toDataFormat method
Implementation
DataFormat toDataFormat() {
switch (this) {
case 'CSV':
return DataFormat.csv;
case 'JSON':
return DataFormat.json;
}
throw Exception('$this is not known in enum DataFormat');
}
DataFormat toDataFormat() {
switch (this) {
case 'CSV':
return DataFormat.csv;
case 'JSON':
return DataFormat.json;
}
throw Exception('$this is not known in enum DataFormat');
}