pasteCell method
void
pasteCell()
Implementation
void pasteCell() {
if (_clip == null) return;
final col = columns[_sel.col];
writeCell(_sel.row, _sel.col, _format(col, _clip!));
_flashHint('Pasted');
}
void pasteCell() {
if (_clip == null) return;
final col = columns[_sel.col];
writeCell(_sel.row, _sel.col, _format(col, _clip!));
_flashHint('Pasted');
}