fromValue static method
Implementation
static NSAutoresizingMaskOptions fromValue(int value) => switch (value) {
0 => NSViewNotSizable,
1 => NSViewMinXMargin,
2 => NSViewWidthSizable,
4 => NSViewMaxXMargin,
8 => NSViewMinYMargin,
16 => NSViewHeightSizable,
32 => NSViewMaxYMargin,
_ => throw ArgumentError('Unknown value for NSAutoresizingMaskOptions: $value'),
};