static String dataGridCell(int row, int col, String? value) => 'Row ${row + 1}, Column ${col + 1}${value != null ? ': $value' : ''}';