ngClassPristine property

  1. @HostBinding.new('class.ng-pristine')
bool get ngClassPristine

Implementation

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