fromValue static method
Implementation
static LcOutputFormat fromValue(int value) => switch (value) {
0 => LC_OUTPUT_FORMAT_PNG,
1 => LC_OUTPUT_FORMAT_BMP,
2 => LC_OUTPUT_FORMAT_QOI,
_ => throw ArgumentError('Unknown value for LcOutputFormat: $value'),
};