postcodeUk method
Validate that the value is a valid postcode for the UK
Implementation
FormValidator postcodeUk({String? message}) {
_addRule(FormRulePostcodeUk(message: message));
return this;
}
Validate that the value is a valid postcode for the UK
FormValidator postcodeUk({String? message}) {
_addRule(FormRulePostcodeUk(message: message));
return this;
}