fromValue static method
Implementation
static UITextAlternativeStyle fromValue(int value) => switch (value) {
0 => UITextAlternativeStyleNone,
1 => UITextAlternativeStyleLowConfidence,
_ => throw ArgumentError('Unknown value for UITextAlternativeStyle: $value'),
};