deleteSelection method

bool deleteSelection()

Deletes the current selection.

Implementation

bool deleteSelection() {
  final changed = _model.deleteSelection();
  if (changed) {
    notifyListeners();
  }
  return changed;
}