cellId property

String cellId

Avoid using it as it is very process expensive function.

var cellIndex = CellIndex.indexByColumnRow(columnIndex: 0, rowIndex: 0 );
var cell = cellIndex.cellId; // A1

Implementation

String get cellId {
  return getCellId(this.columnIndex, this.rowIndex);
}