fromValue static method
Implementation
static UIControlState fromValue(int value) => switch (value) {
0 => UIControlStateNormal,
1 => UIControlStateHighlighted,
2 => UIControlStateDisabled,
4 => UIControlStateSelected,
8 => UIControlStateFocused,
16711680 => UIControlStateApplication,
4278190080 => UIControlStateReserved,
_ => throw ArgumentError('Unknown value for UIControlState: $value'),
};