toExportDataFormat method
Implementation
ExportDataFormat toExportDataFormat() {
switch (this) {
case 'CSV':
return ExportDataFormat.csv;
case 'GRAPHML':
return ExportDataFormat.graphml;
}
throw Exception('$this is not known in enum ExportDataFormat');
}