createCellId method

String createCellId(
  1. double rowId,
  2. int columnId
)

Builds a composite cell ID string from rowId and columnId.

Implementation

String createCellId(double rowId, int columnId) => '${rowId}_$columnId';