fromValue static method
Implementation
static UITableViewStyle fromValue(int value) => switch (value) {
0 => UITableViewStylePlain,
1 => UITableViewStyleGrouped,
2 => UITableViewStyleInsetGrouped,
_ => throw ArgumentError('Unknown value for UITableViewStyle: $value'),
};