toJobReportScope method

JobReportScope toJobReportScope()

Implementation

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