fromValue static method

UISemanticContentAttribute fromValue(
  1. int value
)

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'),
};