valueFor static method

Object? valueFor(
  1. List<PlexDataTableValueCell> row,
  2. String columnName
)

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;
}