toInputScanType method

InputScanType toInputScanType()

Implementation

InputScanType toInputScanType() {
  switch (this) {
    case 'AUTO':
      return InputScanType.auto;
    case 'PSF':
      return InputScanType.psf;
  }
  throw Exception('$this is not known in enum InputScanType');
}