setValue method
I
setValue(
- T value
Updates the value but preserves the current InputStatus.
Use this for programmatic value changes where you do NOT want to trigger
validation display yet. Pair with ValidationMode.blur: call setValue
in onChanged, then markTouched in onEditingComplete.
Implementation
I setValue(T value) => update(value: value) as I;