minLength method
Validate that the value is a minimum of value characters
Implementation
FormValidator minLength(int value, {String? message}) {
_addRule(FormRuleMinLength(value, message));
return this;
}
Validate that the value is a minimum of value characters
FormValidator minLength(int value, {String? message}) {
_addRule(FormRuleMinLength(value, message));
return this;
}