minLength method
Validate that the value is a minimum of value
characters
Implementation
FormValidator minLength(int value) {
_addRule("min:$value");
return this;
}
Validate that the value is a minimum of value
characters
FormValidator minLength(int value) {
_addRule("min:$value");
return this;
}