isPristine property
If the Validatable is in pristine state (hasn't been touched/modified).
Implementation
@override
bool get isPristine => inputs.every((i) => i.isPristine);
If the Validatable is in pristine state (hasn't been touched/modified).
@override
bool get isPristine => inputs.every((i) => i.isPristine);