fromValue static method
Implementation
static UIScrollViewIndexDisplayMode fromValue(int value) => switch (value) {
0 => UIScrollViewIndexDisplayModeAutomatic,
1 => UIScrollViewIndexDisplayModeAlwaysHidden,
_ => throw ArgumentError('Unknown value for UIScrollViewIndexDisplayMode: $value'),
};