FormControlOptions • Angular
Interface for options provided to a FormControl.
nonNullable
boolean | undefinedWhether to use the initial value used to construct the FormControl as its default value
as well. If this option is false or not provided, the default value of a FormControl is null.
When a FormControl is reset without an explicit value, its value reverts to
its default value.
initialValueIsDefault
boolean | undefined@deprecated
Use nonNullable instead.
updateOn
"change" | "blur" | "submit" | undefinedThe event name for control to update upon.