dateAgeIsYounger method

FormValidator dateAgeIsYounger(
  1. int age, {
  2. String? message,
})

Validate that the date is younger than age

Implementation

FormValidator dateAgeIsYounger(int age, {String? message}) {
  _addRule(FormRuleDateAgeIsYounger(age, message));
  return this;
}