validation/validated library
Classes
- Validated
- A FieldValidator that requires a field to be deeply validated.
Constants
- validated → const Validated
-
Requires a field to be deeply validated.
Example: You have a class Group with a field
List<Person> members
as well as a type Person which is validatable. You can then annotate your fieldList<Person> members
with @validated to validate all members when validating your container.