DateOfBirthValidator constructor

DateOfBirthValidator({
  1. int? minAgeYears,
  2. int? maxAgeYears,
  3. int? minAgeMonths,
  4. int? maxAgeMonths,
  5. String? errorText,
})

Implementation

DateOfBirthValidator({
  this.minAgeYears,
  this.maxAgeYears,
  this.minAgeMonths,
  this.maxAgeMonths,
  this.errorText,
});