fromValue static method
Implementation
static UITabBarItemAppearanceStyle fromValue(int value) => switch (value) {
0 => UITabBarItemAppearanceStyleStacked,
1 => UITabBarItemAppearanceStyleInline,
2 => UITabBarItemAppearanceStyleCompactInline,
_ => throw ArgumentError('Unknown value for UITabBarItemAppearanceStyle: $value'),
};