fromValue static method

UIStackViewAlignment fromValue(
  1. int value
)

Implementation

static UIStackViewAlignment fromValue(int value) => switch (value) {
  0 => UIStackViewAlignmentFill,
  1 => UIStackViewAlignmentLeading,
  2 => UIStackViewAlignmentFirstBaseline,
  3 => UIStackViewAlignmentCenter,
  4 => UIStackViewAlignmentTrailing,
  5 => UIStackViewAlignmentLastBaseline,
  _ => throw ArgumentError('Unknown value for UIStackViewAlignment: $value'),
};