beginEdit method
Implementation
void beginEdit([String? initial]) {
_draft = initial ?? cellValue(_sel.row, _sel.col);
_editing = true;
notifyListeners();
}
void beginEdit([String? initial]) {
_draft = initial ?? cellValue(_sel.row, _sel.col);
_editing = true;
notifyListeners();
}