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