toCompressionTypeValue method

CompressionTypeValue toCompressionTypeValue()

Implementation

CompressionTypeValue toCompressionTypeValue() {
  switch (this) {
    case 'none':
      return CompressionTypeValue.none;
    case 'gzip':
      return CompressionTypeValue.gzip;
  }
  throw Exception('$this is not known in enum CompressionTypeValue');
}