zipcodeUs method
Validate that the value is a valid zipcode for the US
Implementation
FormValidator zipcodeUs({String? message}) {
_addRule(FormRuleZipcodeUs(message: message));
return this;
}
Validate that the value is a valid zipcode for the US
FormValidator zipcodeUs({String? message}) {
_addRule(FormRuleZipcodeUs(message: message));
return this;
}