fromValue static method

UIImageSymbolWeight fromValue(
  1. int value
)

Implementation

static UIImageSymbolWeight fromValue(int value) => switch (value) {
  0 => UIImageSymbolWeightUnspecified,
  1 => UIImageSymbolWeightUltraLight,
  2 => UIImageSymbolWeightThin,
  3 => UIImageSymbolWeightLight,
  4 => UIImageSymbolWeightRegular,
  5 => UIImageSymbolWeightMedium,
  6 => UIImageSymbolWeightSemibold,
  7 => UIImageSymbolWeightBold,
  8 => UIImageSymbolWeightHeavy,
  9 => UIImageSymbolWeightBlack,
  _ => throw ArgumentError('Unknown value for UIImageSymbolWeight: $value'),
};