selectAll method

void selectAll()

Select all text from the TextController.

Implementation

void selectAll() {
  this.selection =
      TextSelection(baseOffset: 0, extentOffset: this.text.length);
}