selectAll method

void selectAll()

Selects the entire textarea contents.

Implementation

void selectAll() {
  final before = _TextAreaControllerSnapshot.capture(_model);
  _model.selectAll();
  if (!before.matches(_model)) {
    notifyListeners();
  }
}