How to get Reactive Forms disabled toggle value?

Hello ionities!
Can someone suggest me how to get form.value even for DISABLED elements value on it?
I have toggles which says that i can toggle them of but some ones are MUST be disabled but TOGGLED ON = TRUE and form should count them too on SUBMIT

In my experience the disabling input elements aren’t working that well. I’m using the readyonly attribute to “disable” an input field. Then when you get your form.value you’ll get them all. But keep in mind to reset the input value. You’ll get an empty value when reset is “” (empty)

Done by getting this.form.getRawValue();
if someone need this in future