fromValue static method

NSDataCompressionAlgorithm fromValue(
  1. int value
)

Implementation

static NSDataCompressionAlgorithm fromValue(int value) => switch (value) {
  0 => NSDataCompressionAlgorithmLZFSE,
  1 => NSDataCompressionAlgorithmLZ4,
  2 => NSDataCompressionAlgorithmLZMA,
  3 => NSDataCompressionAlgorithmZlib,
  _ => throw ArgumentError(
    'Unknown value for NSDataCompressionAlgorithm: $value',
  ),
};