fromValue static method
Implementation
static UIImageSymbolScale fromValue(int value) => switch (value) {
-1 => UIImageSymbolScaleDefault,
0 => UIImageSymbolScaleUnspecified,
1 => UIImageSymbolScaleSmall,
2 => UIImageSymbolScaleMedium,
3 => UIImageSymbolScaleLarge,
_ => throw ArgumentError('Unknown value for UIImageSymbolScale: $value'),
};