fromValue static method

UITextAlternativeStyle fromValue(
  1. int value
)

Implementation

static UITextAlternativeStyle fromValue(int value) => switch (value) {
  0 => UITextAlternativeStyleNone,
  1 => UITextAlternativeStyleLowConfidence,
  _ => throw ArgumentError('Unknown value for UITextAlternativeStyle: $value'),
};