fromValue static method

UIModalPresentationStyle fromValue(
  1. int value
)

Implementation

static UIModalPresentationStyle fromValue(int value) => switch (value) {
  0 => UIModalPresentationFullScreen,
  1 => UIModalPresentationPageSheet,
  2 => UIModalPresentationFormSheet,
  3 => UIModalPresentationCurrentContext,
  4 => UIModalPresentationCustom,
  5 => UIModalPresentationOverFullScreen,
  6 => UIModalPresentationOverCurrentContext,
  7 => UIModalPresentationPopover,
  8 => UIModalPresentationBlurOverFullScreen,
  -1 => UIModalPresentationNone,
  -2 => UIModalPresentationAutomatic,
  _ => throw ArgumentError('Unknown value for UIModalPresentationStyle: $value'),
};