fromValue static method
Implementation
static UISemanticContentAttribute fromValue(int value) => switch (value) {
0 => UISemanticContentAttributeUnspecified,
1 => UISemanticContentAttributePlayback,
2 => UISemanticContentAttributeSpatial,
3 => UISemanticContentAttributeForceLeftToRight,
4 => UISemanticContentAttributeForceRightToLeft,
_ => throw ArgumentError('Unknown value for UISemanticContentAttribute: $value'),
};