setText method
Implementation
void setText(String text) {
  _editingController.text = text;
  _editingController.selection = TextSelection.collapsed(offset: text.length);
}void setText(String text) {
  _editingController.text = text;
  _editingController.selection = TextSelection.collapsed(offset: text.length);
}