fromValue static method

UITextStorageDirection fromValue(
  1. int value
)

Implementation

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