So I need to create this function:
buildForm(): void {
console.log('build form');
this.notificationForm = this.fb.group({
appCreated: [],
appSubmittedReview: [],
appCancelReview: [],
appRequestForDeletion: [],
appDisable: [],
appReEnable: [],
appReviewPublished: [],
appReviewApproved: [],
appReviewDeleted: [],
});
}
All the fields are a checkbox and I want that by default those to be not checked, can anyone help me with creating this buildForm.
Thanks in advance