NonNullableFormBuilder • Angular
Similar to FormBuilder#group, except any implicitly constructed FormControl
will be non-nullable (i.e. it will have nonNullable set to true). Note
that already-constructed controls will not be altered.
@returnsFormGroup<ɵNonNullableFormControls<T>>
Similar to FormBuilder#record, except any implicitly constructed FormControl
will be non-nullable (i.e. it will have nonNullable set to true). Note
that already-constructed controls will not be altered.
@paramcontrols{ [key: string]: T; }
Similar to FormBuilder#array, except any implicitly constructed FormControl
will be non-nullable (i.e. it will have nonNullable set to true). Note
that already-constructed controls will not be altered.
@returnsFormArray<ɵElement<T, never>>
Similar to FormBuilder#control, except this overridden version of control forces
nonNullable to be true, resulting in the control always being non-nullable.