valueFor static method
Implementation
static Object? valueFor(
List<PlexDataTableValueCell> row,
String columnName,
) {
final PlexDataTableValueCell? cell = cellFor(row, columnName);
if (cell == null) return null;
if (cell.isWidget) return cell.cellValue;
return cell.value;
}