unchecked property
Sets the text of TextEditingController to value without calling
onFocus and onChanged.
Implementation
set unchecked(String? value) {
  controller.text = value ?? '';
  _previousText = value ?? '';
  _previousSubmit = value ?? '';
  changed.value = false;
  isEmpty.value = controller.text.isEmpty;
}