toJobReportScope method
Implementation
JobReportScope toJobReportScope() {
switch (this) {
case 'AllTasks':
return JobReportScope.allTasks;
case 'FailedTasksOnly':
return JobReportScope.failedTasksOnly;
}
throw Exception('$this is not known in enum JobReportScope');
}