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