* Resets the form control, marking it `pristine` and `untouched`, and resetting * the value. The new value will be the provided value (if passed), `null`, or the initial value * if `nonNullable` was set in the constructor via FormControlOptions. * * ```ts * // By default, the
(
formState?: TValue | FormControlState<TValue>,
options?: {
onlySelf?: boolean;
emitEvent?: boolean;
overwriteDefaultValue?: boolean;
},
)
| 301 | * |
| 302 | */ |
| 303 | reset( |
| 304 | formState?: TValue | FormControlState<TValue>, |
| 305 | options?: { |
| 306 | onlySelf?: boolean; |
nothing calls this directly
no test coverage detected