fromValue static method

UITabBarSystemItem fromValue(
  1. int value
)

Implementation

static UITabBarSystemItem fromValue(int value) => switch (value) {
  0 => UITabBarSystemItemMore,
  1 => UITabBarSystemItemFavorites,
  2 => UITabBarSystemItemFeatured,
  3 => UITabBarSystemItemTopRated,
  4 => UITabBarSystemItemRecents,
  5 => UITabBarSystemItemContacts,
  6 => UITabBarSystemItemHistory,
  7 => UITabBarSystemItemBookmarks,
  8 => UITabBarSystemItemSearch,
  9 => UITabBarSystemItemDownloads,
  10 => UITabBarSystemItemMostRecent,
  11 => UITabBarSystemItemMostViewed,
  _ => throw ArgumentError('Unknown value for UITabBarSystemItem: $value'),
};