deleteBackward method
Deletes backward from the cursor or removes the current selection.
Implementation
bool deleteBackward({bool word = false, bool coalesce = false}) {
final changed = _model.deleteBackward(word: word, coalesce: coalesce);
if (changed) {
notifyListeners();
}
return changed;
}