dateAgeIsYounger method

FormValidator dateAgeIsYounger(
  1. int age
)

Validate that the date is younger than age

Implementation

FormValidator dateAgeIsYounger(int age) {
  _addRule("date_age_is_younger:$age");
  return this;
}