ngClassTouched property

  1. @HostBinding('class.ng-touched')
bool ngClassTouched

Implementation

@HostBinding('class.ng-touched')
bool get ngClassTouched {
  var control = _cd.control;
  return control != null ? control.touched : false;
}