cellFor static method

Implementation

static PlexDataTableValueCell? cellFor(
  List<PlexDataTableValueCell> row,
  String columnName,
) {
  for (final PlexDataTableValueCell cell in row) {
    if (cell.columnName == columnName) return cell;
  }
  return null;
}