beginEdit method

void beginEdit([
  1. String? initial
])

Implementation

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