toReportFormat method
Implementation
ReportFormat toReportFormat() {
switch (this) {
case 'textORcsv':
return ReportFormat.textORcsv;
case 'Parquet':
return ReportFormat.parquet;
}
throw Exception('$this is not known in enum ReportFormat');
}