fromValue static method

Implementation

static UIScrollViewContentInsetAdjustmentBehavior fromValue(int value) => switch (value) {
  0 => UIScrollViewContentInsetAdjustmentAutomatic,
  1 => UIScrollViewContentInsetAdjustmentScrollableAxes,
  2 => UIScrollViewContentInsetAdjustmentNever,
  3 => UIScrollViewContentInsetAdjustmentAlways,
  _ => throw ArgumentError('Unknown value for UIScrollViewContentInsetAdjustmentBehavior: $value'),
};