const extraInformationInput = new FormControl();
 this.extraInformationForm = new FormGroup({
      extraInformation: extraInformationInput,
    });
this.extraInformationForm.valueChanges.subscribe(
  change => {
    console.log('change triggered -> ', change);
  }
);