* The aggregate value of the `FormGroup`, including any disabled controls. * * Retrieves all values regardless of disabled status.
()
| 581 | * Retrieves all values regardless of disabled status. |
| 582 | */ |
| 583 | override getRawValue(): ɵTypedOrUntyped<TControl, ɵFormGroupRawValue<TControl>, any> { |
| 584 | return this._reduceChildren({}, (acc, control, name) => { |
| 585 | (acc as any)[name] = (control as any).getRawValue(); |
| 586 | return acc; |
| 587 | }) as any; |
| 588 | } |
| 589 | |
| 590 | /** @internal */ |
| 591 | override _syncPendingControls(): boolean { |
nothing calls this directly
no test coverage detected