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