//Validate all the form group
this.form.updateValueAndValidity();
//Validate only one form control
this.form.controls['formControlName'].updateValueAndValidity();
form: FormGroup;
onSubmit(){
//checks if form is valid
if( this.form.valid){
//more code here
}
}