toDataFormat method

DataFormat toDataFormat()

Implementation

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