replaceSelection method
Replaces the current selection, or inserts at the cursor if collapsed.
Implementation
void replaceSelection(String text) {
_model.replaceSelection(text);
notifyListeners();
}
Replaces the current selection, or inserts at the cursor if collapsed.
void replaceSelection(String text) {
_model.replaceSelection(text);
notifyListeners();
}