getCellId function

String getCellId(
  1. int colI,
  2. int rowI
)

Implementation

String getCellId(int colI, int rowI) {
  return '${_numericToLetters(colI + 1)}${rowI + 1}';
}