duplicateRowAt method
Implementation
void duplicateRowAt(int index) {
if (index < 0 || index >= _rows.length) return;
final next = _clone()..insert(index + 1, Map<String, String>.from(_rows[index]));
_sel = CellRef(index + 1, _sel.col);
_apply(next);
}