Add item to a column/row position
void put(T item, {required int colIndex, required int rowIndex}) { final row = _rows[rowIndex] ?? <int, T>{}; row[colIndex] = item; _rows[rowIndex] = row; }