fromValue static method
Implementation
static LcExtendMode fromValue(int value) => switch (value) {
0 => LC_EXTEND_MODE_PAD,
1 => LC_EXTEND_MODE_REPEAT,
2 => LC_EXTEND_MODE_REFLECT,
_ => throw ArgumentError('Unknown value for LcExtendMode: $value'),
};