maxLength method
Implementation
SchemaValue<String> maxLength(int max) {
return copyWith(validators: [
...validators,
MaxLengthValidator(max),
]);
}
SchemaValue<String> maxLength(int max) {
return copyWith(validators: [
...validators,
MaxLengthValidator(max),
]);
}