dateAgeIsYounger method
Validate that the date is younger than age
Implementation
FormValidator dateAgeIsYounger(int age, {String? message}) {
_addRule(FormRuleDateAgeIsYounger(age, message));
return this;
}
Validate that the date is younger than age
FormValidator dateAgeIsYounger(int age, {String? message}) {
_addRule(FormRuleDateAgeIsYounger(age, message));
return this;
}