Using FormGroup and FormControl, I typically get the value in the submit and set it to a model.
Submit
const model = {
checkboxValue: +this.formGroup.controls.check.value
}
Adding a '+' to the front of a boolean value is a real handy way to convert it to a number.