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