Event fired when the control's pristine state changes (pristine <=> dirty).
API
class PristineChangeEvent extends ControlEvent {
constructor(pristine: boolean, source: AbstractControl<any, any, any>): PristineChangeEvent;
readonly override pristine: boolean;
readonly override source: AbstractControl<any, any, any>;
}