maxLength method
Validate that the value is a maximum of value characters
Implementation
FormValidator maxLength(int value) {
_addRule("max:$value");
return this;
}
Validate that the value is a maximum of value characters
FormValidator maxLength(int value) {
_addRule("max:$value");
return this;
}