dataGridCell static method

String dataGridCell(
  1. int row,
  2. int col,
  3. String? value
)

Implementation

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