You could use getRawValue() instead of the value property. According to the documentation:
The aggregate value of the FormGroup, including any disabled controls.
If you’d like to include all values regardless of disabled status, use
this method. Otherwise, the value property is the best way to get the
value of the group.
this.myForm.getRawValue()