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