setText method
Implementation
void setText(String text) {
  _refresh(text);
  widget.controller?.text = text;
  widget.controller?.selection = TextSelection.collapsed(offset: text.length);
}void setText(String text) {
  _refresh(text);
  widget.controller?.text = text;
  widget.controller?.selection = TextSelection.collapsed(offset: text.length);
}