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