copyCell method
Implementation
void copyCell({bool cut = false}) {
_clip = cellValue(_sel.row, _sel.col);
if (cut) {
writeCell(_sel.row, _sel.col, '');
_flashHint('Cut');
} else {
_flashHint('Copied');
}
}
void copyCell({bool cut = false}) {
_clip = cellValue(_sel.row, _sel.col);
if (cut) {
writeCell(_sel.row, _sel.col, '');
_flashHint('Cut');
} else {
_flashHint('Copied');
}
}