phoneNumberUk method

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

Validate a UK phone number

Implementation

FormValidator phoneNumberUk({String? message}) {
  _addRule(FormRulePhoneNumberUk(message: message));
  return this;
}