FormGroup AddControl

let form: FormGroup = new FormGroup({});
form.addControl(field_name, new FormControl('', Validators.required));
GutoTrosla