Как назвать Angular 8 Validation ngif
form: FormGroup;
onSubmit(){
//checks if form is valid
if( this.form.valid){
//more code here
}
}
GutoTrosla