getCellId function

String getCellId(
  1. int columnIndex,
  2. int rowIndex
)

Implementation

String getCellId(int columnIndex, int rowIndex) {
  return '${_numericToLetters(columnIndex + 1)}${rowIndex + 1}';
}