selectAll method

void selectAll()

Selects all text in the controller.

Implementation

void selectAll() {
  _selectionStart = 0;
  _selectionEnd = _text.length;
  notifyListeners();
}