Validator for birth dates in the “dd/MM/yyyy” format.
Validates that:
let validator = AdvancedDateOfBirthValidator()
validator.isValid("01/01/2000") // true o false
Can be configured via DateOfBirthValidatorParameters to change the minimum and maximum age.
parameters
: Validation configuration parameters.isValid(_ value: String) -> Bool
- Validates the date.