toDataRepositoryTaskType method

DataRepositoryTaskType toDataRepositoryTaskType()

Implementation

DataRepositoryTaskType toDataRepositoryTaskType() {
  switch (this) {
    case 'EXPORT_TO_REPOSITORY':
      return DataRepositoryTaskType.exportToRepository;
  }
  throw Exception('$this is not known in enum DataRepositoryTaskType');
}