deleteSelection method
Deletes the current selection.
Implementation
bool deleteSelection() {
final changed = _model.deleteSelection();
if (changed) {
notifyListeners();
}
return changed;
}
Deletes the current selection.
bool deleteSelection() {
final changed = _model.deleteSelection();
if (changed) {
notifyListeners();
}
return changed;
}