formgroup custom validation angular 8 code example
Example: angular formgroup validate manually
//Validate all the form group
this.form.updateValueAndValidity();
//Validate only one form control
this.form.controls['formControlName'].updateValueAndValidity();