fromValue static method

UITitlebarToolbarStyle fromValue(
  1. int value
)

Implementation

static UITitlebarToolbarStyle fromValue(int value) => switch (value) {
  0 => UITitlebarToolbarStyleAutomatic,
  1 => UITitlebarToolbarStyleExpanded,
  2 => UITitlebarToolbarStylePreference,
  3 => UITitlebarToolbarStyleUnified,
  4 => UITitlebarToolbarStyleUnifiedCompact,
  _ => throw ArgumentError('Unknown value for UITitlebarToolbarStyle: $value'),
};