selectAll method
void
selectAll()
Select all text from the TextController.
Implementation
void selectAll() {
this.selection =
TextSelection(baseOffset: 0, extentOffset: this.text.length);
}
Select all text from the TextController.
void selectAll() {
this.selection =
TextSelection(baseOffset: 0, extentOffset: this.text.length);
}