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