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