postcodeUk method

FormValidator postcodeUk({
  1. String? message,
})

Validate that the value is a valid postcode for the UK

Implementation

FormValidator postcodeUk({String? message}) {
  _addRule(FormRulePostcodeUk(message: message));
  return this;
}