replaceValue method

I replaceValue(
  1. T value
)

Updates the value, runs validation, and marks the input as InputStatus.touched.

Use this for standard user interactions (typing, selecting).

Implementation

I replaceValue(T value) => update(value: value, status: InputStatus.touched) as I;