toReportScope method

ReportScope toReportScope()

Implementation

ReportScope toReportScope() {
  switch (this) {
    case 'FAILED_FILES_ONLY':
      return ReportScope.failedFilesOnly;
  }
  throw Exception('$this is not known in enum ReportScope');
}