fromValue static method

NSLayoutFormatOptions fromValue(
  1. int value
)

Implementation

static NSLayoutFormatOptions fromValue(int value) => switch (value) {
  2 => NSLayoutFormatAlignAllLeft,
  4 => NSLayoutFormatAlignAllRight,
  8 => NSLayoutFormatAlignAllTop,
  16 => NSLayoutFormatAlignAllBottom,
  32 => NSLayoutFormatAlignAllLeading,
  64 => NSLayoutFormatAlignAllTrailing,
  512 => NSLayoutFormatAlignAllCenterX,
  1024 => NSLayoutFormatAlignAllCenterY,
  2048 => NSLayoutFormatAlignAllLastBaseline,
  4096 => NSLayoutFormatAlignAllFirstBaseline,
  65535 => NSLayoutFormatAlignmentMask,
  0 => NSLayoutFormatDirectionLeadingToTrailing,
  65536 => NSLayoutFormatDirectionLeftToRight,
  131072 => NSLayoutFormatDirectionRightToLeft,
  196608 => NSLayoutFormatDirectionMask,
  _ => throw ArgumentError('Unknown value for NSLayoutFormatOptions: $value'),
};