fromValue static method
Implementation
static UITableViewCellEditingStyle fromValue(int value) => switch (value) {
0 => UITableViewCellEditingStyleNone,
1 => UITableViewCellEditingStyleDelete,
2 => UITableViewCellEditingStyleInsert,
_ => throw ArgumentError('Unknown value for UITableViewCellEditingStyle: $value'),
};