dateAgeIsOlder method
Validate that the date is older than age
Implementation
FormValidator dateAgeIsOlder(int age, {String? message}) {
_addRule(FormRuleDateAgeIsOlder(age, message));
return this;
}
Validate that the date is older than age
FormValidator dateAgeIsOlder(int age, {String? message}) {
_addRule(FormRuleDateAgeIsOlder(age, message));
return this;
}