onValueChanged method

void onValueChanged()

Implementation

void onValueChanged() {
  if (controller?.value?.text != null) {
    textEditingController?.text = controller?.value?.text as String;
  }
  hideAllSuggestions();
}