toFileFormat method
Implementation
FileFormat toFileFormat() {
switch (this) {
case 'Csv':
return FileFormat.csv;
}
throw Exception('$this is not known in enum FileFormat');
}
FileFormat toFileFormat() {
switch (this) {
case 'Csv':
return FileFormat.csv;
}
throw Exception('$this is not known in enum FileFormat');
}