copyCell method

void copyCell({
  1. bool cut = false,
})

Implementation

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